Description
In my application I have to work with jsons which contains duplicate names:
{ "a" : "qqq", "a" : "qqq" }
|
It is very convenient to parse json by BsonDocument.Parse, but it fails on json containing duplicate names:
System.InvalidOperationException : Duplicate element name 'a'.
|
It will be cool if we'll add a method with signature:
BsonDocument Parse(string json, bool allowDuplicateElementNames) |