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