hi all,
I would like to be able to create an umbrella class for all my main global
sections but I would still like to keep them all in separate file something
like the below but I keep getting an error saying you are not allowed
Multiple base classes.
/// <summary>
/// This is the umbrella Object for loading all the Global classes at once.
/// It should only ever be used for this task.
/// </summary>
public class myGlobal : GlobalVariables , Settings , ErrorHandler ,StopWatch
{
}
Does any one know a way of doing this.
Thanks
ink
I would like to be able to create an umbrella class for all my main global
sections but I would still like to keep them all in separate file something
like the below but I keep getting an error saying you are not allowed
Multiple base classes.
/// <summary>
/// This is the umbrella Object for loading all the Global classes at once.
/// It should only ever be used for this task.
/// </summary>
public class myGlobal : GlobalVariables , Settings , ErrorHandler ,StopWatch
{
}
Does any one know a way of doing this.
Thanks
ink
Comment