Given the property:
Func<dynamic,object> Format { set; get; }
And a method parameter:
void SomeMethod(Func<T, object> format) { // Set Format here.. }
Within this method, how would I set the Format property?
Given the property:
Func<dynamic,object> Format { set; get; }
And a method parameter:
void SomeMethod(Func<T, object> format) { // Set Format here.. }
Within this method, how would I set the Format property?