示例#1
0
 public ObjectInfo(Types.InternalType primaryKeyType, object primaryKeyValue, string[] otherFields)
 {
     m_primary_key_value = primaryKeyValue;
     m_primary_key_type  = primaryKeyType;
     m_other_fields      = otherFields;
 }
示例#2
0
		public ObjectInfo(Types.InternalType primaryKeyType, object primaryKeyValue, string[] otherFields)
		{
			m_primary_key_value = primaryKeyValue;
			m_primary_key_type = primaryKeyType;
			m_other_fields = otherFields;
		}
示例#3
0
 public KClass(object kvalue, Types.InternalType tp)
 {
     m_type  = tp;
     m_value = kvalue;
 }