コード例 #1
0
ファイル: FileExtensions.cs プロジェクト: yazici/cscore-1
 public static string GetFileSizeString(this FileInfo self)
 {
     return(ByteSizeToString.ByteSizeToReadableString(self.GetFileSize()));
 }
コード例 #2
0
ファイル: StopwatchV2.cs プロジェクト: cs-util-com/cscore
 public string GetAllocatedMemBetweenStartAndStop()
 {
     return("allocated managed mem: " + ByteSizeToString.ByteSizeToReadableString(allocatedManagedMemBetweenStartAndStop)
            + ", allocated mem: " + ByteSizeToString.ByteSizeToReadableString(allocatedMemBetweenStartAndStop));
 }