This lightweight class represents an entry in a DatabaseServices.DBDictionary object. It contains the key and object ID of the entry, but does not contain the entry itself.
Public Structure DBDictionaryEntry Public m_key As string Public m_value As ObjectId End Structure
public struct DBDictionaryEntry { public string m_key; public ObjectId m_value; }
Comments? |