Пример #1
0
 public void AppendDelimiter(string text, SqlDelimiterType type)
 {
     Add(new DelimiterNode(type, text));
 }
Пример #2
0
        // Constructor

        public DelimiterNode(SqlDelimiterType type, string text)
        {
            Type = type;
            Text = text;
        }