FreakySources.Code.ByteCount.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            return "Byte: " + Byte + "; Count: " + Count;
        }

Usage Example

コード例 #1
0
 public override string ToString()
 {
     return((Left == null && Right == null) ? ByteCount.ToString() : ("Count: " + ByteCount.Count.ToString()));
 }
ByteCount