BytesToString() 공개 정적인 메소드

public static BytesToString ( long byteCount ) : string
byteCount long
리턴 string
예제 #1
0
        public void DebugPrint()
        {
            int count = 0;

            DebugOutput.PrintLn("Listing Files...(" + Entries.Count + ")");
            foreach (Entry e in Entries)
            {
                DebugOutput.PrintLn((count++) + " : " + e.name + " Size: " + DLCPackage.BytesToString(e.size), false);
            }
            //DebugOutput.Update();
        }