C# Class MongoDB.Driver.MongoUtils

Various static utility methods.
Datei anzeigen Open project: CloudMetal/mongo-csharp-driver Class Usage Examples

Public Methods

Method Description
Hash ( string text ) : string

Gets the MD5 hash of a string.

ToCamelCase ( string value ) : string

Converts a string to camel case by lower casing the first letter (only the first letter is modified).

Method Details

Hash() public static method

Gets the MD5 hash of a string.
public static Hash ( string text ) : string
text string The string to get the MD5 hash of.
return string

ToCamelCase() public static method

Converts a string to camel case by lower casing the first letter (only the first letter is modified).
public static ToCamelCase ( string value ) : string
value string The string to camel case.
return string