Binder.cs 374 B

12345678910111213141516
  1. using System.Globalization;
  2. namespace System.Reflection
  3. {
  4. partial class Binder
  5. {
  6. #if MOBILE_LEGACY || MONO_COM
  7. // CanChangeType
  8. // This method checks whether the value can be converted into the property type.
  9. public virtual bool CanChangeType (object value, Type type, CultureInfo culture)
  10. {
  11. return false;
  12. }
  13. #endif
  14. }
  15. }