Ejemplo n.º 1
0
		public KClass(float k)
		{
			m_type = Types.InternalType.t_Float;
			m_value = k;
		}
Ejemplo n.º 2
0
		public KClass(uint k)
		{
			m_type = Types.InternalType.t_UInt;
			m_value = k;
		}
Ejemplo n.º 3
0
		public KClass(ulong k)
		{
			m_type = Types.InternalType.t_ULong;
			m_value = k;
		}
Ejemplo n.º 4
0
		public KClass(ushort k)
		{
			m_type = Types.InternalType.t_UShort;
			m_value = k;
		}
Ejemplo n.º 5
0
		public KClass(char k)
		{
			m_type = Types.InternalType.t_Char;
			m_value = k;
		}
Ejemplo n.º 6
0
 public KClass(sbyte k)
 {
     m_type  = Types.InternalType.t_SByte;
     m_value = k;
 }
Ejemplo n.º 7
0
		public KClass(sbyte k)
		{
			m_type = Types.InternalType.t_SByte;
			m_value = k;
		}
Ejemplo n.º 8
0
 public KClass(double k)
 {
     m_type  = Types.InternalType.t_Double;
     m_value = k;
 }
Ejemplo n.º 9
0
 public KClass(string k)
 {
     m_type  = Types.InternalType.t_String;
     m_value = k;
 }
Ejemplo n.º 10
0
 public KClass(ulong k)
 {
     m_type  = Types.InternalType.t_ULong;
     m_value = k;
 }
Ejemplo n.º 11
0
 public KClass(float k)
 {
     m_type  = Types.InternalType.t_Float;
     m_value = k;
 }
Ejemplo n.º 12
0
 public KClass(uint k)
 {
     m_type  = Types.InternalType.t_UInt;
     m_value = k;
 }
Ejemplo n.º 13
0
 public KClass(char k)
 {
     m_type  = Types.InternalType.t_Char;
     m_value = k;
 }
Ejemplo n.º 14
0
 public KClass(ushort k)
 {
     m_type  = Types.InternalType.t_UShort;
     m_value = k;
 }
Ejemplo n.º 15
0
		public KClass(double k)
		{
			m_type = Types.InternalType.t_Double;
			m_value = k;
		}
Ejemplo n.º 16
0
		public KClass(object kvalue, Types.InternalType tp)
		{
			m_type = tp;
			m_value = kvalue;
		}
Ejemplo n.º 17
0
		public KClass(string k)
		{
			m_type = Types.InternalType.t_String;
			m_value = k;
		}
Ejemplo n.º 18
0
 public KClass(object kvalue, Types.InternalType tp)
 {
     m_type  = tp;
     m_value = kvalue;
 }