1.

What Is A Static Property. Give An Example?

Answer»

A PROPERTY that is marked with a static keyword is considered as static property. This makes the property available to CALLERS at any time, even if no instance of the class exists. In the example below PI is a static property.

using System;
class Circle
{
private static double _pi = 3.14;
public static double PI
{
get
{
return _pi;
}
}
}
class MainClass
{
public static VOID Main()
{
Console.WriteLine(Circle.PI);
}
}

A property that is marked with a static keyword is considered as static property. This makes the property available to callers at any time, even if no instance of the class exists. In the example below PI is a static property.

using System;
class Circle
{
private static double _pi = 3.14;
public static double PI
{
get
{
return _pi;
}
}
}
class MainClass
{
public static void Main()
{
Console.WriteLine(Circle.PI);
}
}



Discussion

No Comment Found