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
Nabin Agarwala
NA
318
50k
Can not convert from object type 'System.Data.DataRowView' to type 'Sy
Nov 6 2020 5:49 AM
Can not convert from object type 'System.Data.DataRowView' to type 'System.String' error coming please fix.
string
_fileName = @
"D:\Personal\Documents\SalaryDetails.txt"
;
StreamWriter writer =
new
StreamWriter(_fileName);
for
(
int
i = 0; i < lst.Items.Count; i++)
{
writer.WriteLine(Convert.ToString(lst.Items[i]));
}
writer.Close();
Reply
Answers (
2
)
Explain me coupling in programming terms, with example is appreciated.
there is names data in my List<string> and now i want to copy this dat