int i = 1;
int j = 1;
System.Console.WriteLine(i == j);
System.Console.WriteLine(i.ToString() == j.ToString());
System.Console.WriteLine((object)i == (object)j);
Give the sample code above, what is the output to the console?
Answer Posted / pp
provide the answer please
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
How do you comment out code in c#?
What is base class in c#?
What are virtual destructors?
What is multicast delegate explain with example?
What is the difference between a constant and a static readonly field?
the c# keyword .int. Maps to which .net type?
What is the data type for bit in c#?
Why is c# used?
Why do we need static class in c#?
What is different about switch statements in c#?
Explain about Threading Types.
Should I make my destructor virtual?
Can we maintain state in webservice?
If a child class instance is created, which class constructor is called first - base class or child class?
What is cookies in c# asp net?