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
brijesh prajapati
NA
158
16.8k
How to Create a Datatable In C#
Sep 27 2012 2:09 AM
Step 1 :
Declare A Datatable
Ex
DataTable
Dt
= new DataTable();
Step 2:
Create a Datatable Columns
Ex
DataColumn RollNo= new DataColumn();
DataColumn Name= new DataColumn();
DataColumn Std= new DataColumn();
DataColumn BDate= new DataColumn();
RollNo.ColumnName = "RollNo";
Name.ColumnName = "Name";
Std.ColumnName = "Std";
BDate.ColumnName = "BDate";
Dt
.Columns.Add(RollNo);
Dt .Columns.Add(Name);
Dt .Columns.Add(Std);
Dt .Columns.Add(BDate);
Step 3:
Create A row And Fill It
Ex
DataRow row;
row = Dt.NewRow();
row["RollNo"] ="1";
row["Name"] = "Vicky";
row["Std"] = "12Std";
row["BDate"] ="17-11-1990";
Dt.Rows.Add(row);
-----------------------------------------------------------------
Brijesh Kumar Prajapati
Jr.Software Devloper,
Softyoug Solution Pvt Ltd
Vapi,
Gujarat,
India
Reply
Answers (
1
)
Exchange Service get all rooms list and get appointment each room
Font class in Windows Store apps?