C# 클래스 NSupport.StringFormatting

Provides extension methods for string for fomatting.
파일 보기 프로젝트 열기: jittuu/NSupport

공개 메소드들

메소드 설명
FormatWith ( this source ) : string

Replaces one or more format items in a specified string with the string representation of a specified object. This method uses String.Format(string, object[]) method intenally.

FormatWith ( this source, IFormatProvider provider ) : string

Replaces one or more format items in a specified string with the string representation of a specified object. This method uses String.Format(IFormatProvider, string, object[]) method intenally.

메소드 상세

FormatWith() 공개 정적인 메소드

Replaces one or more format items in a specified string with the string representation of a specified object. This method uses String.Format(string, object[]) method intenally.
public static FormatWith ( this source ) : string
source this A instance.
리턴 string

FormatWith() 공개 정적인 메소드

Replaces one or more format items in a specified string with the string representation of a specified object. This method uses String.Format(IFormatProvider, string, object[]) method intenally.
public static FormatWith ( this source, IFormatProvider provider ) : string
source this A instance.
provider IFormatProvider An object that supplies culture-specific formatting information.
리턴 string