CSMongo.MongoOid.GetId C# (CSharp) Méthode

GetId() public méthode

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