What Will Be The Output Of The Following C Code Snippetp Pre #889
What will be the output of the following C# code snippet?</p> <pre><code class="language-csharp" line="1"> class A { int i; int j; public A() { i = 1; j = 2; } } class Program { static void Main(string[] args) { A obj1 = new A(); Console.WriteLine(obj1.ToString()); Console.ReadLine(); } } </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Miscellaneous Topics - String Formatting - Quiz No.1.