コード例 #1
0
ファイル: Program.cs プロジェクト: erikma/MathStuff
 public static string ToFixedLengthString(this Rational r, int len, StringBuilder sb)
 {
     sb.Length = 0;
     r.AppendDecimalString(sb, len);
     if (sb.Length < len)
     {
         // Zero-fill remainder.
         sb.Append('0', len - sb.Length);
     }
     return(sb.ToString());
 }