Пример #1
0
 public void AppendLast(LinkedConfigValue cv)
 {
     if (_next != null)
     {
         _next.AppendLast(cv);
     }
     else
     {
         _next = cv;
     }
 }
Пример #2
0
 protected LinkedConfigValue(LinkedConfigValue x)
     : base(x)
 {
     _next = null;
 }