Beispiel #1
0
 /// <summary>
 /// Вывод статуса измерения
 /// </summary>
 /// <param name="str"></param>
 void LOG_Status(string str)
 {
     //Text_console.AppendText(str + "\r");
     Text_console.Clear();
     Text_console.AppendText(str + "\r\n");
 }
Beispiel #2
0
 /// <summary>
 /// Вывод сообщений в системную консоль и консоль приложения
 /// </summary>
 /// <param name="str"></param>
 void LOG(string str)
 {
     Text_console.AppendText(str + "\r\n");
     Console.Write(str + "\n");
 }