C# Class Tup.Cobar4Net.Util.FormatUtil

格式化工具
Datei anzeigen Open project: tupunco/Tup.Cobar4Net

Public Methods

Method Description
Format ( int i, int fillLength ) : string

格式化后返回的字符串

Format ( long l, int fillLength ) : string

格式化后返回的字符串

Format ( string s, int fillLength ) : string

格式化后返回的字符串

Format ( string s, int fillLength, char fillChar, int align ) : string
FormatTime ( long millis, int precision ) : string

格式化时间输出

1d 15h 4m 15s 987ms

Method Details

Format() public static method

格式化后返回的字符串
public static Format ( int i, int fillLength ) : string
i int 需要格式化的数字类型,默认按右对齐。
fillLength int 填充长度
return string

Format() public static method

格式化后返回的字符串
public static Format ( long l, int fillLength ) : string
l long 需要格式化的数字类型,默认按右对齐。
fillLength int 填充长度
return string

Format() public static method

格式化后返回的字符串
public static Format ( string s, int fillLength ) : string
s string 需要格式化的原始字符串,默认按左对齐。
fillLength int 填充长度
return string

Format() public static method

public static Format ( string s, int fillLength, char fillChar, int align ) : string
s string 需要格式化的原始字符串
fillLength int 填充长度
fillChar char 填充的字符
align int 填充方式(左边填充还是右边填充)
return string

FormatTime() public static method

格式化时间输出

1d 15h 4m 15s 987ms

public static FormatTime ( long millis, int precision ) : string
millis long
precision int
return string