public static void Main()
if(!string.IsNullOrWhiteSpace(textbox1) || !string.IsNullOrWhiteSpace(textbox2) )
int.TryParse(textbox1, out var textbox1Int);
int.TryParse(textbox1, out var textbox2Int);
textbox3 = (textbox1Int + textbox2Int).ToString();
Console.WriteLine(textbox3);