LanguageService Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the LanguageService class.
protected:
LanguageService();
protected:
LanguageService();
LanguageService();
protected LanguageService ();
Protected Sub New ()
Examples
using Microsoft.VisualStudio.Package;
using Microsoft.VisualStudio.Shell;
namespace MyLanguagePackage
{
[Guid("B614A40A-80D9-4fac-A6AD-FC2868FFF7CD")]
public class MyLanguageService : LanguageService
{
public MyLanguageService()
: base()
{
}
}
}
Remarks
Remember to call the base class constructor in your derived class's constructor.