Crea una función que recibe un objeto Box con las propiedades Width, Length y Height, y devuelve su volumen.
Program.VolumeOfBox(new Box { Width = 2, Length = 5, Height = 1 }) ➞ 10
Program.VolumeOfBox(new Box { Width = 4, Length = 2, Height = 2 }) ➞ 16long de C#.