startit/Emne 3/ObjectsAndEnums/Box.cs
Geir Okkenhaug Jerstad 62b9bfb0fd Objects and Enums test
2024-11-20 12:52:38 +01:00

15 lines
251 B
C#

namespace ObjectsAndEnums
{
public class Box
{
public int Width;
public int Height;
internal void Show()
{
Console.WriteLine("Boksen har disse målene: " + Width + "x" + Height);
}
}
}