D
David Dvali
Hello.
How can I implement C# class accesors in Visio 2003?
Here is the class code in C# for example:
public class Person {
private int id;
private string forename;
private string surname;
public int Id {
get { return this.id; }
}
public string Forename {
get { return this.forename; }
set { this.forename = value; }
}
public string Surname {
get { return this.surname; }
set { this.surname = value; }
}
}
How can I implement C# class accesors in Visio 2003?
Here is the class code in C# for example:
public class Person {
private int id;
private string forename;
private string surname;
public int Id {
get { return this.id; }
}
public string Forename {
get { return this.forename; }
set { this.forename = value; }
}
public string Surname {
get { return this.surname; }
set { this.surname = value; }
}
}