System.Runtime.Serialization.Plists.Extensions.ToBinaryString C# (CSharp) 메소드

ToBinaryString() 공개 정적인 메소드

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