Пример #1
0
        public AcfNode(string key, AcfBranchNode parent)
        {
            Key = key;

            Parent = parent;
            if (parent != null)
            {
                parent.AddChild(this);
            }
        }
Пример #2
0
 public AcfTree(string key, AcfBranchNode parent) : base(key, parent)
 {
 }
Пример #3
0
 public AcfValueNode(string key, string value, AcfBranchNode parent) : base(key, parent)
 {
     Value = value;
 }