Enum CommentMarkEnum
Enumeration of different comment mark types used in NC code.
public enum CommentMarkEnum
- Extension Methods
Fields
DoubleSlash = 3
Double slash style comments, e.g. //This is a comment.
HeadPercent = 4
Percent sign at the beginning style comments, e.g. %This is a comment.
Quote = 1
Parenthesis style comments, e.g. (This is a comment).
Semicolon = 2
Semicolon style comments, e.g. ;This is a comment.