如何从observablecollection中获取数据并在c#中显示到控制台应用程序中?

时间:2014-04-21 13:24:46

标签: c#

如何从observablecollection对象获取数据并使用c#显示到控制台应用程序中?

示例:

ObservableCollection<classname> object1= method(parameters);  

这里我需要打印包含在object1中的数据。

2 个答案:

答案 0 :(得分:2)

因为object1是一个集合,你想如何打印数据。 假设您要打印每行中的每个对象。

 for (int i = 0; i < object1.Count; i++)
 {
      Console.WriteLine(string.Concat(object1[i].item1, "---", object1[i].Item2)
 }

答案 1 :(得分:0)

遍历你的收藏

foreach(classname cl in object1)
{
   Console.WriteLine(cl.ToString());
   //or print the property of your class
}