Superfly1611
Regular
The following method is automatically generated by visual studio every time you create a new windows form.....
Is this generic code?
In other words when i'm creating my own class can i use this code to dispose of all objects that this class uses? (variables, DataConnections etc)
Thanks
Code:
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
Is this generic code?
In other words when i'm creating my own class can i use this code to dispose of all objects that this class uses? (variables, DataConnections etc)
Thanks