static readonly fields
public class Bicycle
{
public readonly string make;
public static readonly int wheels = 4;
public Bicycle(string make)
{
System.Console.WriteLine("Creating a Bicycle object");
this.make = make;
}
}
class MainClass
{
public static void Main()
{
System.Console.WriteLine("Bicycle.wheels = " + Bicycle.wheels);
Bicycle myBicycle = new Bicycle("AAA");
System.Console.WriteLine("myBicycle.make = " + myBicycle.make);
}
}
Output Bicycle.wheels = 4
Creating a Bicycle object
myBicycle.make = AAA
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
|