CSMongo.MongoOid.GetId C# (CSharp) 메소드

GetId() 공개 메소드

Returns a string version of this ID
public GetId ( ) : string
리턴 string
        public string GetId()
        {
            return BitConverter.ToString(this.Value)
                .Replace("-", string.Empty)
                .ToLower();
        }