C Sharp (C#) - Classes and Objects
What will be the output of this code?
class Box {
public int width = 5;
public int height = 10;
}
var b = new Box();
Console.WriteLine(b.width + b.height);