CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

static Modifier

C# – Modifiers – static Modifier

Another interesting modifier C# provides is static modifier. We can use this on classes & it’s members. The static Modifier A static member can be declared using static modifier. static is the keyword we use to define the static members. static members belongs to the type itself; not to associate with specific objects. When we […]

Scroll to top