當我使用的第一個代碼,它完美地給出單詞DB插入元素字符串列表
collection.Find(new BsonDocument()).ForEachAsync(X => Console.WriteLine(X.GetElement("word").Value));
但是當我嘗試把所有「字」 s轉換爲字符串列表以獲得單個元件,但給出ArgumentOutOfRangeException
錯誤。
collection.Find(new BsonDocument()).ForEachAsync(X => wordStringList.Add(X.GetElement("word").Value.ToString()));
Console.WriteLine(wordStringList[0]);
我該如何解決這個問題,謝謝。