Exemple #1
0
		}//value
		
		public Value( short @short )
		{
			Vt = Vtype.Short;
			Ptr = null;
			Str = null;
			Dta = new Vdata();
			Dta.Long = @short;
		}//.ctor
Exemple #2
0
		}//value
		
		public Value( ulong @ulong )
		{
			Vt = Vtype.Ulong;
			Ptr = null;
			Str = null;
			Dta = new Vdata();
			Dta.Long = ((long)@ulong);
		}//.ctor
Exemple #3
0
		}//value
		
		public Value( sbyte @sbyte )
		{
			Vt = Vtype.Sbyte;
			Ptr = null;
			Str = null;
			Dta = new Vdata();
			Dta.Long = @sbyte;
		}//.ctor
Exemple #4
0
		}//value
		
		public Value( bool @bool )
		{
			Vt = Vtype.Bool;
			Ptr = null;
			Str = null;
			Dta = new Vdata();
			Dta.Long = @bool ? 1 : 0;
		}//.ctor
Exemple #5
0
		}//value
		
		public Value( uint @uint )
		{
			Vt = Vtype.Uint;
			Ptr = null;
			Str = null;
			Dta = new Vdata();
			Dta.Long = @uint;
		}//.ctor
Exemple #6
0
		}//value
		
		public Value( float @float )
		{
			Vt = Vtype.Float;
			Ptr = null;
			Str = null;
			Dta = new Vdata();
			Dta.Double = @float;
		}//.ctor
Exemple #7
0
		}//.ctor
		
		internal Value( Vtype vtype, Object @object )
		{
			Vt = vtype;
			Ptr = @object;
			Str = null;
			Dta = new Vdata();
		}//.ctor
Exemple #8
0
		}//.ctor
		
		public Value( IProp prop )
		{
			Vt = Vtype.Prop;
			Ptr = prop;
			Str = null;
			Dta = new Vdata();
		}//.ctor
Exemple #9
0
		}//.ctor
		
		public Value( IProps obj, string @string )
		{
			Vt = Vtype.Ident;
			Ptr = obj;
			Str = @string;
			Dta = new Vdata();
		}//.ctor
Exemple #10
0
		}//.ctor
		
		public Value( Value value )
		{
			Vt = value.Vt;
			Ptr = value.Ptr;
			Str = value.Str;
			Dta = value.Dta;
		}//.ctor
Exemple #11
0
		}//.ctor
		
		public Value( IObject obj )
		{
			Vt = Vtype.Object;
			Ptr = obj;
			Str = null;
			Dta = new Vdata();
		}//.ctor
Exemple #12
0
		}//.ctor
		
		internal Value( Vtype vtype, double @double )
		{
			Vt = vtype;
			Ptr = null;
			Str = null;
			Dta = new Vdata();
			Dta.Double = @double;
		}//.ctor
Exemple #13
0
		}//.ctor
		
		internal Value( Vtype vtype, long @long )
		{
			Vt = vtype;
			Ptr = null;
			Str = null;
			Dta = new Vdata();
			Dta.Long = @long;
		}//.ctor
Exemple #14
0
		}//.ctor
		
		internal Value( Vtype vtype, Object @object, string @string )
		{
			Vt = vtype;
			Ptr = @object;
			Str = @string;
			Dta = new Vdata();
		}//.ctor
Exemple #15
0
		}//value
		
		public Value( int @int )
		{
			Vt = Vtype.Int;
			Ptr = null;
			Str = null;
			Dta = new Vdata();
			Dta.Long = @int;
		}//.ctor
Exemple #16
0
		}//value
		
		public Value( string @string )
		{
			Vt = Vtype.String;
			Ptr = null;
			Str = @string;
			Dta = new Vdata();
		}//.ctor
Exemple #17
0
		}//value
		
		public Value( long @long )
		{
			Vt = Vtype.Long;
			Ptr = null;
			Str = null;
			Dta = new Vdata();
			Dta.Long = @long;
		}//.ctor
Exemple #18
0
		}//value
		
		public Value( char @char )
		{
			Vt = Vtype.Char;
			Ptr = null;
			Str = null;
			Dta = new Vdata();
			Dta.Long = @char;
		}//.ctor
Exemple #19
0
		}//value
		
		public Value( double @double )
		{
			Vt = Vtype.Double;
			Ptr = null;
			Str = null;
			Dta = new Vdata();
			Dta.Double = @double;
		}//.ctor
Exemple #20
0
		internal Value( Vtype vtype )
		{
			Vt = vtype;
			Ptr = null;
			Str = null;
			Dta = new Vdata();
		}//.ctor