Hi there,
IN C# I use this way to define any variable (X for example)
using System;
/// <summary>
/// Summary description for Class1
/// </summary>
public class Class1
{
private _X;
public Class1()
{
//
// TODO: Add constructor logic here
//
}
public String X
{
set { _X = value;}
get {return _X;}
}
}
Would you please show me how to do that in VC++ 2005
Thanx in advance!
ORA-MAN