public int Add(int a, int b, int c = 0){ return a + b + c;}
MessageBox.Show(Add(10,20));MessageBox.Show(Add(10,20,30));
Login to post response