LanguageService Constructor ()
Visual Studio 2015
Initializes a new instance of the LanguageService class.
Assembly: Microsoft.VisualStudio.Package.LanguageService.14.0 (in Microsoft.VisualStudio.Package.LanguageService.14.0.dll)
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() { } } }
Show: