コード例 #1
0
ファイル: VariableLink.cs プロジェクト: raket124/thesis
        public void AddLast(MyVariable input)
        {
            var current = this;

            while (current.Child != null)
            {
                current = current.Child;
            }
            current.Child = new VariableLink(input);
        }
コード例 #2
0
ファイル: VariableLink.cs プロジェクト: raket124/thesis
 public void Clear()
 {
     this.value = new MyVariable(typeof(Nullable));
     this.child = null;
 }
コード例 #3
0
ファイル: VariableLink.cs プロジェクト: raket124/thesis
 public VariableLink(MyVariable value, VariableLink child)
 {
     this.value = value;
     this.child = child;
 }
コード例 #4
0
ファイル: VariableLink.cs プロジェクト: raket124/thesis
 public VariableLink(MyVariable value) : this(value, null)
 {
 }