Пример #1
0
    private void __UpdateCodePanel(int new_char_count)
    {
        String new_string = string_processor.GetScriptText(new_char_count);

        code_panel.AddText(new_string);
        line_count_num += GetNLCountInString(new_string);
        line_count.Text = "LINE COUNT: " + line_count_num;
    }