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
srinivas
NA
153
167k
Retreive data from Excel Sheet using LINQ
Jan 12 2010 6:47 AM
hi to all
i want to retreive data from excel sheet using LINQ
now i am using for loops like this to retreive data
range = xlWorkSheet.UsedRange;
int
bid = 0;
for
(row = range.Rows.Count; row >= 2; row--)
{
if
(
int
.Parse(((Excel.
Range
)range.Cells[row, 3]).Value2.ToString()) == libObj.CategoryId)
{
bid =
int
.Parse(((Excel.
Range
)range.Cells[row, 1]).Value2.ToString());
break
;
}
}
instead of using like this is there any other way using LINQ
plz help me
thankx
Reply
Answers (
1
)
Which of the following performed to fully debug an asp.net application running on same machine as a debugger?
How to delete GroupBox, keeping intact its contencs .NET 3.5, VS 2008 Express