CSMongo.MongoOid.GetId C# (CSharp) Method

GetId() public method

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