Is it possible to set or override the default state for a structure?
As an example I have an
enum something{a,b,c,d,e};
and a struc
There is a workaround
public struct MyStruct { public MyStruct(int h = 1, int l = 1) { high = h; low = l; } public int high; public int low; }