public int CompareTo(object obj)
        {
            StringGuid guid = obj as StringGuid;

            if (guid == null)
            {
                return(1);
            }

            return(string.Compare(m_storage, guid.m_storage));
        }
Example #2
0
 public AssetId(StringGuid guid, long fileIdentifier, string name)
 {
     this.guid           = guid;
     this.fileIdentifier = fileIdentifier;
     this.name           = name;
 }
 public AssetId(StringGuid guid, long fileIdentifier)
 {
     this.guid           = guid;
     this.fileIdentifier = fileIdentifier;
 }