System.Runtime.Serialization.Plists.Extensions.ToBinaryString C# (CSharp) Method

ToBinaryString() public static method

Converts the given value into its binary representation as a string.
public static ToBinaryString ( this value ) : string
value this The value to convert.
return string
        public static string ToBinaryString(this byte value)
        {
            return Convert.ToString(value, 2);
        }