Example #1
0
 protected VariableMember(VariableMember obj)
 {
     this.Name          = obj.Name;
     this.Type          = obj.Type;
     this.Value         = obj.Value;
     this.ReflectedType = obj.Type;
 }
 protected VariableMember(VariableMember obj)
 {
     this.Name = obj.Name;
     this.Type = obj.Type;
     this.Value = obj.Value;
     this.ReflectedType = obj.Type;
 }
Example #3
0
 public Property(VariableMember obj) : base(obj)
 {
 }
Example #4
0
 public Field(VariableMember obj)
     : base(obj)
 {
 }
Example #5
0
 public bool Equals(VariableMember obj)
 {
     return(obj.GetHashCode() == this.GetHashCode());
 }
 public bool Equals(VariableMember obj)
 {
     return obj.GetHashCode() == this.GetHashCode();
 }
Example #7
0
 public Field(VariableMember obj) : base(obj)
 {
 }