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