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
Dinesh Santhalingam
NA
737
368k
datarow to array from data table
Dec 27 2016 11:37 PM
I have a data table .I want to filter some item from data table and append the filtered item into an array.
DataTable
dt
=
new
DataTable();
DataView
dv
=
new
DataView(dt);
dv.RowFilter
= (("
Name
=
ProE
"));
var
tableEnumerable
=
dv
.AsEnumerable();// It showing error
var
tableArray
=
tableEnumerable
.ToArray();
Suggest some Ideas.
Reply
Answers (
1
)
Array to dictionary
Data table to array and return array