📌  相关文章
📜  如何将列表转换为 observablecollection c# 代码示例

📅  最后修改于: 2022-03-11 14:49:13.434000             🧑  作者: Mango

代码示例1
var stringList = new List() {"1","2","3"};
//Use the contructor override to add the list to the new collection
var obStrings = new ObservableCollection(stringList);