How many types of classes are in C# OOPs programming ?
How many types of classes are in C# OOPs programming? Ravi Vishwakarma 704 23 Aug 2021 How many types of classes are in C# OOPs programming?
Types of class-
Generally, there are 4 different types of classes are used in c# programming language.
1- Abstract class - is created by using 'abstract' keyword.
ex- public abstract class Test
{
// statements of the class.
}
2- Static class - is created by using 'static' keyword.
ex- public static class Test
{
// statements of this class
}
3- Partial class- is created by using 'partial' keyword.
public partial class Test
{
//statements of this class
}
4- Sealed class- is created by using 'sealed' keyword.
public sealed class Test
{
//statements of this class
}