.NET 4.x Найти подстроку в строке - C#
Формулировка задачи:
if Pos('load', response)<>0 then begin
showmessage(Good);Решение задачи: «.NET 4.x Найти подстроку в строке»
textual
Листинг программы
string response;
string load;
if (response.Contains(load))
MessageBox.Show("Good");