Пример #1
0
 public Const(ConstName name = null, ConstValue value = null, string attributeName = "", string attributeType = "")
 {
     System.Diagnostics.Debug.WriteLine("Const.Const(ConstName, ConstValue, string, string)");
     Name          = name != null ? new ConstName(name) : null;
     Value         = value != null ? new ConstValue(value) : null;
     AttributeName = attributeName;
     AttributeType = attributeType;
 }
Пример #2
0
 public ConstName(ConstName obj) : this(obj.Name, obj.Type)
 {
     System.Diagnostics.Debug.WriteLine("ConstName.ConstName(ConstName)");
 }