Crie uma função que recebe um objeto Box com as propriedades Width, Length e Height e retorna seu volume.
Program.VolumeOfBox(new Box { Width = 2, Length = 5, Height = 1 }) ➞ 10
Program.VolumeOfBox(new Box { Width = 4, Length = 2, Height = 2 }) ➞ 16long do C#.