예제 #1
0
 public void Write_to(TextWriter s, int depth, Dictionary <string, string> namespaces)
 {
     if (_to != null)
     {
         _to.Write(s, "to", depth + 1, namespaces);
     }
 }
예제 #2
0
 public void Write_from(TextWriter s, int depth, Dictionary <string, string> namespaces)
 {
     if (_from != null)
     {
         _from.Write(s, "from", depth + 1, namespaces);
     }
 }