StorytellerDocGen.Samples.SimpleCommentSampleScanner.SimpleCommentSampleScanner C# (CSharp) Method

SimpleCommentSampleScanner() public method

public SimpleCommentSampleScanner ( string extension, string commentMark, string language ) : System.Linq
extension string
commentMark string
language string
return System.Linq
        public SimpleCommentSampleScanner(string extension, string commentMark, string language)
        {
            _extension = extension;
            _language = language;
            _start = commentMark + Samples.SAMPLE;
            _end = commentMark + Samples.END;
        }