LanguageService Constructor ()

 

Initializes a new instance of the LanguageService class.

Namespace:   Microsoft.VisualStudio.Package
Assembly:  Microsoft.VisualStudio.Package.LanguageService.14.0 (in Microsoft.VisualStudio.Package.LanguageService.14.0.dll)

protected:
LanguageService()

Remember to call the base class constructor in your derived class's constructor.

using Microsoft.VisualStudio.Package;
using Microsoft.VisualStudio.Shell;

namespace MyLanguagePackage
{
    [Guid("B614A40A-80D9-4fac-A6AD-FC2868FFF7CD")]
    public class MyLanguageService : LanguageService
    {
        public MyLanguageService()
            : base()
        {
        }
    }
}
Return to top
Show: