Exemplo n.º 1
0
 /// <summary>
 /// Initialze an instance of <see cref="TypeMetadata"/>.
 /// </summary>
 /// <param name="type">The type.</param>
 /// <param name="valueType">The value type.</param>
 /// <param name="name">The type name.</param>
 public TypeMetadata(
     Type type,
     ObjectValueType valueType,
     string name)
 {
     this.Type      = type;
     this.ValueType = valueType;
     this.Name      = name;
 }
 public DateObjectValue(ObjectValueType objectType, string value)
 {
     this.objectType = objectType;
     this.value      = value;
 }