TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Farhan Shariff
NA
933
241.7k
Display List in windows forms application
Mar 24 2014 9:11 AM
I want to
Display
results of the list .
Is it possible to display the list in console (program is windows form)as list excludedNames has many values. Which is the best way to display the result.?.
Collapse
|
Copy Code
private
void
bt_compare_Click(
object
sender, EventArgs e)
{
table1 = GetDataTabletFromCSVFile(tbCSVPath.Text);
table2 = GetDataTabletFromCSVFile1(tbCSVPath1.Text);
List<
string
> excludedNames =
new
List<
string
>();
for
(
int
i =
0
; i < table1.Rows.Count; i++)
{
string
col = table1.Rows[i][
"
Par Name"
].ToString();
if
(!table2.Columns.Contains(col))
{
excludedNames.Add(col);
}
}
}
Reply
Answers (
6
)
MVC3
Socket - Gobal IP address