Hello!
I'm developing a Windows Mobile WinForm app with C# and .Net Compact Framework 2.0 SP2.
I have a control that inhertit from System.Windows.Form.Control that I want to make private Size property. How can I do that?
I've tried this:
new private Size;
But it doesn't compile.
Any idea?