1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
using Microsoft.VisualStudio.Package;
using Microsoft.VisualStudio.TextManager.Interop;
namespace MySql.Data.VisualStudio
{
internal class MySqlSource : Source
{
public MySqlSource(LanguageService service, IVsTextLines textLines, Colorizer colorizer)
: base(service, textLines, colorizer)
{
}
public override CommentInfo GetCommentFormat()
{
CommentInfo ci = new CommentInfo();
ci.UseLineComments = true;
ci.LineStart = "#";
ci.BlockStart = "/*";
ci.BlockEnd = "*/";
return ci;
}
}
}
|