C# Getter/Setter Macro
Posted: Fri May 16, 2008 12:40 am
By running the Zeus C# Getter/Setter Macro it is possible to take a field defintions like this:
and produce getter and setter function like this:
Cheers Jussi
Code: Select all
private Table table;
Code: Select all
private Table table;
public Table Table
{
get { return table; }
set { table = value; }
}