コード例 #1
0
ファイル: ObjectInfo.cs プロジェクト: luanzhu/OOD.NET
		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
ファイル: KClass.cs プロジェクト: luanzhu/OOD.NET
		public KClass(object kvalue, Types.InternalType tp)
		{
			m_type = tp;
			m_value = kvalue;
		}