Beispiel #1
0
 /// <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;
 }
Beispiel #2
0
		/// <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;
		}
Beispiel #3
0
 /// <summary>
 /// Instantiates a new instance of <see cref="DcilDataType"/>
 /// </summary>
 public DcilDataType(DCILType type)
     : this(type, -1, -1, -1)
 {
 }
Beispiel #4
0
		/// <summary>
		/// Instantiates a new instance of <see cref="DcilDataType"/>
		/// </summary>
		public DcilDataType(DCILType type)
			: this(type, -1, -1, -1)
		{
		}