NumberFormatInfo.PercentGroupSeparator 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
백분율 값에서 정수 부분을 구분하는 문자열을 가져오거나 설정합니다.
public:
property System::String ^ PercentGroupSeparator { System::String ^ get(); void set(System::String ^ value); };
public string PercentGroupSeparator { get; set; }
member this.PercentGroupSeparator : string with get, set
Public Property PercentGroupSeparator As String
속성 값
백분율 값에서 정수 부분을 구분하는 문자열입니다. InvariantInfo의 기본값은 ","입니다.
예외
속성이 null
로 설정되어 있습니다.
속성이 설정되어 있으며 NumberFormatInfo 개체가 읽기 전용입니다.
예제
다음 예제에서는 변경의 효과 보여 줍니다.는 PercentGroupSeparator 속성입니다.
using namespace System;
using namespace System::Globalization;
int main()
{
// Gets a NumberFormatInfo associated with the en-US culture.
CultureInfo^ MyCI = gcnew CultureInfo( "en-US",false );
NumberFormatInfo^ nfi = MyCI->NumberFormat;
// Displays a value with the default separator (S", ").
Double myInt = 1234.5678;
Console::WriteLine( myInt.ToString( "P", nfi ) );
// Displays the same value with a blank as the separator.
nfi->PercentGroupSeparator = " ";
Console::WriteLine( myInt.ToString( "P", nfi ) );
}
/*
This code produces the following output.
123, 456.78 %
123 456.78 %
*/
using System;
using System.Globalization;
class NumberFormatInfoSample {
public static void Main() {
// Gets a NumberFormatInfo associated with the en-US culture.
NumberFormatInfo nfi = new CultureInfo( "en-US", false ).NumberFormat;
// Displays a value with the default separator (",").
Double myInt = 1234.5678;
Console.WriteLine( myInt.ToString( "P", nfi ) );
// Displays the same value with a blank as the separator.
nfi.PercentGroupSeparator = " ";
Console.WriteLine( myInt.ToString( "P", nfi ) );
}
}
/*
This code produces the following output.
123,456.78 %
123 456.78 %
*/
Imports System.Globalization
Class NumberFormatInfoSample
Public Shared Sub Main()
' Gets a NumberFormatInfo associated with the en-US culture.
Dim nfi As NumberFormatInfo = New CultureInfo("en-US", False).NumberFormat
' Displays a value with the default separator (",").
Dim myInt As [Double] = 1234.5678
Console.WriteLine(myInt.ToString("P", nfi))
' Displays the same value with a blank as the separator.
nfi.PercentGroupSeparator = " "
Console.WriteLine(myInt.ToString("P", nfi))
End Sub
End Class
'This code produces the following output.
'
'123,456.78 %
'123 456.78 %
설명
PercentGroupSeparator 속성은 데 "P" 표준 서식 문자열을 사용 하 여 정수 그룹을 구분 하는 기호를 정의 합니다. 자세한 내용은 표준 숫자 형식 문자열을 참조하세요.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET