Visual C++ .NET/Structure/Constructor

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

struct with copy constructor

 
#include "stdafx.h"
using namespace System;
ref struct R
{
   R()
   {
      val = 1;
   }
 
   R( R% r)
   {
      val = r.val;
   }
   property int val;
};

int main()
{
    R r;
}