Question: C# write a program named InputMethodDemo2 that eliminates the repetitive code in the InputMethod() in the InputMethodDemo program in Figure 8-5. Rewrite the program so
C#
write a program named InputMethodDemo2 that eliminates the repetitive code
in the InputMethod() in the InputMethodDemo program in Figure 8-5. Rewrite the
program so the InputMethod()contains only two statements:
one = DataEntry("first");
two = DataEntry("second");

Write the code by consulting the figure, run, fix errors.
using System; using static System.Console; class Input MethodDemo Notice the { keyword out. static void Main() { int first, second; InputMethod (out first, out second); WriteLine("After InputMethod first is {0}", first); WriteLine("and second is {0}", second); } private static void InputMethod(out int one, out int two) { string s1, s2; Write("Enter first integer "); s1 = ReadLine(); Notice the Write("Enter second integer "); keyword out. s2 ReadLine(); Convert.ToInt32 (s1); two = Convert.ToInt32(s2); } } one =
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
