' This example demonstrates the System.Global-
' ization.NumberFormatInfo.DigitSubstitution property.
Imports System
Imports System.Globalization
Class Sample
Public Shared Sub Main()
Dim westernCI As New CultureInfo("en-US")
Dim arabicCI As New CultureInfo("ar-SA")
Dim thaiCI As New CultureInfo("th-TH")
Dim shape As DigitShapes
Dim name As String
Dim intro As String = "The digit substitution value for the {0} culture is {1}."
' Western culture.
name = westernCI.EnglishName
shape = westernCI.NumberFormat.DigitSubstitution
Console.WriteLine(intro, name, shape)
' Arabic culture.
name = arabicCI.EnglishName
shape = arabicCI.NumberFormat.DigitSubstitution
Console.WriteLine(intro, name, shape)
' Thai culture.
name = thaiCI.EnglishName
shape = thaiCI.NumberFormat.DigitSubstitution
Console.WriteLine(intro, name, shape)
End Sub 'Main
End Class 'Sample
'
'This code example produces the following results:
'
'The digit substitution value for the English (United States) culture is None.
'The digit substitution value for the Arabic (Saudi Arabia) culture is Context.
'The digit substitution value for the Thai (Thailand) culture is None.
'
// This example demonstrates the System.Global-
// ization.NumberFormatInfo.DigitSubstitution property.
using System;
using System.Globalization;
class Sample
{
public static void Main()
{
CultureInfo westernCI = new CultureInfo("en-US");
CultureInfo arabicCI = new CultureInfo("ar-SA");
CultureInfo thaiCI = new CultureInfo("th-TH");
DigitShapes shape;
string name;
string intro = "The digit substitution value for the {0} culture is {1}.";
// Western culture.
name = westernCI.EnglishName;
shape = westernCI.NumberFormat.DigitSubstitution;
Console.WriteLine(intro, name, shape);
// Arabic culture.
name = arabicCI.EnglishName;
shape = arabicCI.NumberFormat.DigitSubstitution;
Console.WriteLine(intro, name, shape);
// Thai culture.
name = thaiCI.EnglishName;
shape = thaiCI.NumberFormat.DigitSubstitution;
Console.WriteLine(intro, name, shape);
}
}
/*
This code example produces the following results:
The digit substitution value for the English (United States) culture is None.
The digit substitution value for the Arabic (Saudi Arabia) culture is Context.
The digit substitution value for the Thai (Thailand) culture is None.
*/
// This example demonstrates the
// System.Globalization.NumberFormatInfo.DigitSubstitution property.
using namespace System;
using namespace System::Globalization;
int main()
{
CultureInfo^ westernCI = gcnew CultureInfo("en-US");
CultureInfo^ arabicCI = gcnew CultureInfo("ar-SA");
CultureInfo^ thaiCI = gcnew CultureInfo("th-TH");
DigitShapes shape;
String^ name;
String^ intro = "The digit substitution value for " +
"the {0} culture is {1}.";
// Western culture.
name = westernCI->EnglishName;
shape = westernCI->NumberFormat->DigitSubstitution;
Console::WriteLine(intro, name, shape);
// Arabic culture.
name = arabicCI->EnglishName;
shape = arabicCI->NumberFormat->DigitSubstitution;
Console::WriteLine(intro, name, shape);
// Thai culture.
name = thaiCI->EnglishName;
shape = thaiCI->NumberFormat->DigitSubstitution;
Console::WriteLine(intro, name, shape);
}
/*
This code example produces the following results:
The digit substitution value for the English (United States) culture is None.
The digit substitution value for the Arabic (Saudi Arabia) culture is Context.
The digit substitution value for the Thai (Thailand) culture is None.
*/