C# 클래스 stringFormat, shared-source-cli-2.0

Class with Main entry point.
파일 보기 프로젝트 열기: gbarnett/shared-source-cli-2.0

공개 메소드들

메소드 설명
Main ( string args ) : void

Main entry point.

PrintFormat ( IFormattable inputData, string formatString ) : void

Overload that uses null for the IFormatProvider.

PrintFormat ( IFormattable inputData, string formatString, IFormatProvider provider ) : void

Outputs the data with the specified format.

TryUserFormat ( IFormattable inputData ) : void

Gets a format string from the user and calls PrintFormat() with it.

메소드 상세

Main() 공개 정적인 메소드

Main entry point.
public static Main ( string args ) : void
args string
리턴 void

PrintFormat() 공개 정적인 메소드

Overload that uses null for the IFormatProvider.
public static PrintFormat ( IFormattable inputData, string formatString ) : void
inputData IFormattable
formatString string
리턴 void

PrintFormat() 공개 정적인 메소드

Outputs the data with the specified format.
public static PrintFormat ( IFormattable inputData, string formatString, IFormatProvider provider ) : void
inputData IFormattable
formatString string
provider IFormatProvider
리턴 void

TryUserFormat() 공개 정적인 메소드

Gets a format string from the user and calls PrintFormat() with it.
public static TryUserFormat ( IFormattable inputData ) : void
inputData IFormattable
리턴 void