Links for Creating Visual Studio.NET Add-ins
Jason Row post some useful links and information regarding creating Visual Studio.NET Add-ins.
Random thoughts about .Net development
Jason Row post some useful links and information regarding creating Visual Studio.NET Add-ins.
edtFTPnet is the first choice of .NET developers worldwide for
incorporating FTP functionality into their applications.
There are various different ways of implementing the singleton pattern in C#.
The implementation that listed below is thread-safe, simple, and perform well.
public sealed class Singleton
{
Singleton()
{
}
public static Singleton Instance
{
get
{
return Nested.instance;
}
}
class Nested
{
// Explicit static constructor to tell C# compiler
// not to mark type as beforefieldinit
static Nested()
{
}
internal static readonly Singleton instance = new Singleton();
}
}
You can read more about different singleton pattern implementations here
If you are interested in some "non-business" development such as games and stuff, you should check out http://msdn.microsoft.com/coding4fun/
"Coding4Fun is all about giving something back to the hobbyist developer community…" Brian Keller, product manager for Visual Studio
Data Tier Modeler (DTM) is a powerful, ultra-high performance object/relational framework for Microsoft.Net.
New features and improvements (DTM v3.0)
Map many entities
Features
Interfacing
Request Language
Database
Unlimited mapping types
Object cache
[ Via Yitzhak Gootvilig's Blog ]