NumberFormatInfo.CurrencyDecimalSeparator 속성

정의

통화 값에서 소수 구분 기호로 사용하는 문자열을 가져오거나 설정합니다.

public:
 property System::String ^ CurrencyDecimalSeparator { System::String ^ get(); void set(System::String ^ value); };
public string CurrencyDecimalSeparator { get; set; }
member this.CurrencyDecimalSeparator : string with get, set
Public Property CurrencyDecimalSeparator As String

속성 값

String

통화 값에서 소수 구분 기호로 사용하는 문자열입니다. InvariantInfo의 기본값은 "."입니다.

예외

속성이 null로 설정되어 있습니다.

속성이 설정되어 있으며 NumberFormatInfo 개체가 읽기 전용입니다.

속성이 빈 문자열로 설정되어 있습니다.

예제

다음 예제에서는 변경의 효과 보여 줍니다.는 CurrencyDecimalSeparator 속성입니다.

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".").
   Int64 myInt = 123456789;
   Console::WriteLine( myInt.ToString( "C", nfi ) );
   
   // Displays the same value with a blank as the separator.
   nfi->CurrencyDecimalSeparator = " ";
   Console::WriteLine( myInt.ToString( "C", nfi ) );
}

/* 
This code produces the following output.

$123, 456, 789.00
$123, 456, 789 00
*/
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 (".").
      Int64 myInt = 123456789;
      Console.WriteLine( myInt.ToString( "C", nfi ) );

      // Displays the same value with a blank as the separator.
      nfi.CurrencyDecimalSeparator = " ";
      Console.WriteLine( myInt.ToString( "C", nfi ) );
   }
}


/*
This code produces the following output.

$123,456,789.00
$123,456,789 00
*/
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 Int64 = 123456789
      Console.WriteLine(myInt.ToString("C", nfi))

      ' Displays the same value with a blank as the separator.
      nfi.CurrencyDecimalSeparator = " "
      Console.WriteLine(myInt.ToString("C", nfi))

   End Sub

End Class


' 
'This code produces the following output.
'
'$123,456,789.00
'$123,456,789 00
'

설명

이 속성의 초기 값의 설정에서 파생 되는 국가 및 언어 제어판 항목.

CurrencyDecimalSeparator 속성은 데 "C" 표준 서식 문자열을 사용 하 여 정수 소수 자릿수를 구분 하는 기호를 정의 합니다. 자세한 내용은 표준 숫자 형식 문자열을 참조하세요.

적용 대상

추가 정보