Object initialization

The accessible fields or properties can be called in a single statement to do the initialization.


using System;
class Rectangle{
   public int Width;
   public int Height;   
}
class Program
{
    static void Main(string[] args)
    {
        Rectangle r = new Rectangle { Width = 5, Height = 6 };

        Console.WriteLine(r.Width);
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.