Methods.Methods.MethodOverloading C# (CSharp) Method

MethodOverloading() private method

private MethodOverloading ( ) : void
return void
        public void MethodOverloading() //You can define two methods that are named the same, as long as they receive different parameters
        {
            var bytes = WriteAsBytes(2.3, 4.54);
            Assert.AreEqual(bytes, "0x660x660x660x660x660x660x020x400x290x5C0x8F0xC20xF50x280x120x40");
        }