The C# driver tutorial gives the following format for the connection string (which includes the option to specify a default database):
mongodb://[username:password@]hostname[:port][/[database][?options]]
But I don't see an overload of the GetDatabase method that doesn't require providing the database name. Is there some other method of getting a MongoDatabase instance that represents the database specified in the connection string?