So I have a BsonDocument b (let\'s say it has FirstName, LastName, Age), which you could access as b[\"FirstName\"], etc...
If I try to do b[\"asdfasdf\"] (which doesn\'
An update to Robert's answer, the correct syntax using the C# 2.0 driver is:
var firstName = report.GetValue("FirstName", null);