/// <summary> /// Instantiates a new instance of <see cref="DcilDataType"/> /// </summary> public DcilDataType(DCILType type, long size, long scale, short precision) { this._type = type; this._size = size; this._scale = scale; this._precision = precision; }
/// <summary> /// Instantiates a new instance of <see cref="DcilDataType"/> /// </summary> public DcilDataType(DCILType type) : this(type, -1, -1, -1) { }