Hello everyone I want to edit this source
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace G18_20140215 {
class Program {
static void Main(string[] args) {
Console.WriteLine("Hello G_18");
Test("Hello User");
Test("Hello User1");
Sum(2, 3);
Console.ReadKey();
}
static void Test(string s) {
Console.WriteLine(s);
}
static void Sum(int x, int y) {
Console.WriteLine("x + y = " + (x + y));
}
}
}
------------------------------------------------------------------------------------------------------------------------------
SO THAT I HAD ANSWER LIKE THIS , CAN ANYONE HELP ? ty!
http://imageshack.com/a/img59/403/95a9.png
-------------------------------------------------------------------------------------------------------------------------------