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
Jeremy
NA
7
6.1k
translate from linq to something .net2.0
May 26 2011 12:45 PM
var folders = from o in Directory.GetDirectories(HttpContext.Current.Server.MapPath(parentNode.Key))
let dir = new DirectoryInfo(o)
where !Regex.Match(dir.Name, ExcludedFolders).Success
select new
{
DirectoryName = dir.Name
};
I need to be able to write this in something .net2.0 friendly. I am not familiar with linq to be able write this another way.
Any help is appreciated...
Reply
Answers (
1
)
Web setup without source files in asp.net VS 2010
How to find Start and End date for a specified date in ASP.Net