Click here to Skip to main content
Click here to Skip to main content

.NET Regular Expressions Find and Replace Add-In for Visual Studio 2008

By , 12 Oct 2009
 
using System;
using System.Collections.Generic;
using System.Text;
using EnvDTE;

namespace RegexFindAndReplace
{
    /// <summary>
    /// The ProjectComparer class is used to compare two EnvDTE.Project object by name
    /// </summary>
    class ProjectComparer : IComparer<Project>
    {
        #region IComparer<Project> Members

        int IComparer<Project>.Compare( Project x, Project y )
        {
            return x.Name.CompareTo( y.Name );
        }

        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of use and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

jhillman
Software Developer
United States United States
I am a software developer currently working in Salt Lake City, Utah. I work primarily with C# for my job, but I mess around with C, Perl, and Windows PowerShell for fun.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 12 Oct 2009
Article Copyright 2008 by jhillman
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid