Search Results

1
vote

What is the best .Net library to handle feeds (Atom+RSS)

You might find useful Atom.Net and FeedDotNet, both open source. …
1
vote

.NET “must-have” development tools

Reflector Resharper …
2
votes

How do I set the login info for SQL Server 2008 in Entity Framework?

Check this out: Security Considerations (Entity Framework) …
10
votes

Can you mix .net languages within a single project?

You can mix languages in a single assembly with ILMerge …
2
votes

Linq to SQL - Can you submit changes for a single object?

Here is a good article about how to manage the lifetime of the Linq to SQL DataContext, might help you... …
2
votes

What’s the best way to learn .NET?

I can recommend you a book, C# for Java Developers, it can help you to get started, this book explains very well the …
7
votes

Microsoft alternative to Jabber?

I really like Jabber, for jumpstart, I would recommend you to see this list of Jabber Server software which you can use to run your ow …
2
votes

ORM for Database with 1000+ Tables

You can give a try LLBLGen and ADO.NET …
0
votes

Best way to connect to Interbase 7.1 using .NET C#

Check this providers: Interbase and Firebird Developer's for Visual Studio .N …
3
votes

How to edit EXIF data in .NET

Check this libraries: EXIFextractor …
4
votes

invoke default browser

System.Diagnostics.Process.Start("http://mysite.com"); …
4
votes

What’s your favorite feature in .NET?

Linq To SQL and the ADO.NET …
4
votes

Why is a left parenthesis being escaped in this Regex?

Your IsMatch Method is using the option RegexOptions.IgnorePatternWhitespace, that allows you to put comments inside the regular expressions, so you have to scape the # chatacter, othe …
21
votes

Best ASP.NET MVC book?

This will be a very good one: Scheduled for March 2009, you can see a sample chapter …
2
votes

Getting key of value of a generic Dictionary?

Maybe the easiest way to do it, without Linq, can be to loop over the pairs: int betaKey; foreach (KeyValuePair<int, string> pair in lookup) { if (pair.Value == value) …

1 2 3 4 5 8 next
15 30 50 per page