Methods.Methods.WriteAsBytes C# (CSharp) Method

WriteAsBytes() private static method

private static WriteAsBytes ( ) : string
return string
        private static string WriteAsBytes(params int[] values)//This is the method signature
        {
            //Every method should have a return type
            return values.Select(BitConverter.GetBytes).Aggregate<byte[], string>
                (null, (current1, bytes) => bytes.Aggregate(current1, (current, currentByte)
                    => current + String.Format("0x{0:X2}", currentByte)));
        }