G
Guest
private struct MySTRUCT
{
public IntPtr hwndMyObj;
public Int32 idMyObj;
public Int32 MyCode;
}
In Vb.Net 2005 code above, I am getting a warning message
"MyProj.MyClass.MySTRUCT.hwndMyObj is never assigned to,and will always have
its default value."
The same message for idMyObj and MyCode. How do I resolve it?
{
public IntPtr hwndMyObj;
public Int32 idMyObj;
public Int32 MyCode;
}
In Vb.Net 2005 code above, I am getting a warning message
"MyProj.MyClass.MySTRUCT.hwndMyObj is never assigned to,and will always have
its default value."
The same message for idMyObj and MyCode. How do I resolve it?