6
प्रतिबिंब के साथ 'कास्टिंग'
निम्नलिखित नमूना कोड पर विचार करें: class SampleClass { public long SomeProperty { get; set; } } public void SetValue(SampleClass instance, decimal value) { // value is of type decimal, but is in reality a natural number => cast instance.SomeProperty = (long)value; } अब मुझे परावर्तन के माध्यम से कुछ …
81
c#
reflection
casting