Beispiel #1
0
 public void removeFather()
 {
     this.father = null;
 }
Beispiel #2
0
 public Domain(string name)
 {
     this.name = name;
     this.father = null;
 }
Beispiel #3
0
 public void addFather(string name)
 {
     this.father = new Domain(name);
 }
Beispiel #4
0
 public SName(string name, string domain = "")
 {
     this.name = name;
     this.domain = new Domain(domain);
 }