Możesz utworzyć powyższy dokument w C# za pomocą następującej instrukcji:
var document = new BsonDocument {
{ "author", "joe" },
{ "title", "yet another blog post" },
{ "text", "here is the text..." },
{ "tags", new BsonArray { "example", "joe" } },
{ "comments", new BsonArray {
new BsonDocument { { "author", "jim" }, { "comment", "I disagree" } },
new BsonDocument { { "author", "nancy" }, { "comment", "Good post" } }
}}
};
Możesz sprawdzić, czy uzyskałeś poprawny wynik za pomocą:
var json = document.ToJson();