blah blah blah is here! blah blah » Close

0
votes
1 answers

i want to add two numbers in c# console application how i get two input.

int a; int b; int ans; i need a two input a and b;? ans= a+b; console.writeline(ans);

0
votes
2 answers

Pass a variable from one form to another

Let's say I have form1 and form2. Form1 and Form2 are open. You click a button on Form2 and it adds 1 to a variable called myNumber on Form1. Now the problem is I can't use the new keyword and create a new instance of Form1, because Form ...

Feedback