As I can see, the DataGridLength parameterless constructor isn’t documented in the msdn( http://msdn.microsoft.com/en-us/library/system.windows.controls.datagridlength.datagridlength%28v=VS.95%29.aspx)
Why?
As I can see, the DataGridLength parameterless constructor isn’t documented in the msdn( http://msdn.microsoft.com/en-us/library/system.windows.controls.datagridlength.datagridlength%28v=VS.95%29.aspx
Share
Because its a structure. Structures cannot have an explicit default constructor. There is always an implied public default constructor for a structure.