Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
321 views
in Technique[技术] by (71.8m points)

How to get data from observablecollection and display into console application in c#?

How do i get data from observablecollection object and display into console application using c#?

Example:

ObservableCollection<classname> object1= method(parameters);  

Here i need to print data containing in object1.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

since object1 is a collection, how do you want to print the data. Assuming that you want to print each object in each line.

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...