📄 defaultcomment.cs
字号:
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
// <version>$Revision: 966 $</version>
// </file>
using System;
using System.Collections.Generic;
namespace ICSharpCode.SharpDevelop.Dom {
[Serializable]
public class DefaultComment : IComment
{
bool isBlockComment;
string commentTag;
string commentText;
DomRegion region;
public DefaultComment(bool isBlockComment, string commentTag, string commentText, DomRegion region)
{
this.isBlockComment = isBlockComment;
this.commentTag = commentTag;
this.commentText = commentText;
this.region = region;
}
public bool IsBlockComment {
get {
return isBlockComment;
}
}
public string CommentTag {
get {
return commentTag;
}
}
public string CommentText {
get {
return commentText;
}
}
public DomRegion Region {
get {
return region;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -