Archive for April 2005

 
 

Spell Checker for VS.NET 2003 Add-in (v. 2.0)

This freeware Visual Studio 2003 add-in provides a multi-language spell checker for your comments and string literals. Without setting any options it knows how to spell check C#, VB.NET, C++.NET,  J#, C/C++,  HTML, XML, Java, and other text-based files. It works on the selected code or on the entire current file or project, and has many other options. Version 2 fully works with ASP.NET and Web Services projects.

You are only required to have MS-Word 2000 or higher because this add-ins needs the objects they expose.

Download Spell Checker for VS.NET 2003 Add-in (v. 2.0)

[Via Anders Norås' blog ]

Links for Creating Visual Studio.NET Add-ins

Jason Row post some useful links and information regarding creating Visual Studio.NET Add-ins.

edtFTPnet

edtFTPnet is the first choice of .NET developers worldwide for
incorporating FTP functionality into their applications.

  • Widely used throughout the world in many projects.
  • Full source code is provided.
  • Passive and active modes are supported (PASV and PORT).
  • Resuming of interrupted binary transfers supported.
  • Events for monitoring progress of data transfers.
  • Under the LGPL, so it can be embedded in commercial applications.
  • Mature and stable codebase.
  • Simple but extensive API analogous to a command line FTP program.

Implementing the singleton pattern

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

Coding4Fun

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


Page 2 of 41234