FreakySources.Code.ByteCount.ToString C# (CSharp) Méthode

ToString() public méthode

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

Usage Example

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