Csharp/CSharp Tutorial/struct/this — различия между версиями

Материал из .Net Framework эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (1 версия)
 
(нет различий)

Текущая версия на 12:17, 26 мая 2010

Use this() to initialize a struct

public struct ComplexNumber
{
   public ComplexNumber( double real, double imaginary )
   {
      this.real = real;
      this.imaginary = imaginary;
   }
   public ComplexNumber( double real ) :this()
   {
      this.real = real;
   }
   private double real;
   private double imaginary;
}