Change the current culture to ja-JP and display the date : Date Operation « Date Time « VB.Net






Change the current culture to ja-JP and display the date

  

Imports System.Globalization
Imports System.Threading

Module DateToStringExample
   Public Sub Main()
      Dim currentCulture As CultureInfo = Thread.CurrentThread.CurrentCulture
      Dim exampleDate As Date = #05/01/2010 6:32:06PM#

      Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("ja-JP")
      Console.WriteLine(exampleDate.ToString())

      ' Restore the original culture
      Thread.CurrentThread.CurrentCulture = currentCulture

   End Sub
End Module

   
    
  








Related examples in the same category

1.Add time (days, hours) to current timeAdd time (days, hours) to current time
2.Date Time SubtractionDate Time Subtraction
3.Multiply Time SpanMultiply Time Span
4.Date Time and TimeSpan DemoDate Time and TimeSpan Demo
5.Add a day, a month and a year to a Date
6.Date = #11/4/2010 1:30:00AM#
7.CDate("10/26/2010 1:32:00 PM")
8.Arithmetic Operations with Dates and Times
9.Calculate the interval between the two dates
10.Display the date using the current (en-US) culture
11.Change the current culture to fr-FR and display the date
12.Allow a leading space in the date string
13.Represents an instant in time, typically expressed as a date and time of day.
14.Create Date object from String
15.Date.Now, UtcNow and Today
16.Create Date from date string with time
17.Convert Date to string with fr-FR culture
18.Adds time interval to a specified date and time, yielding a new date and time.
19.Compare the difference between two Date value with Ticks
20.Compares two Date values
21.Gets the date component from String
22.Gets the day of the month from Date
23.Gets the milliseconds component of the date represented by this instance.
24.Ticks from a Date
25.Difference between local time and UTC
26.Display the ticks-per-time-unit fields
27.Add one and half Milliseconds
28.Gets the day of the week represented by this instance.
29.Returns the number of days in the specified month and year.
30.Find out the file age
31.Returns an indication whether the specified year is a leap year.
32.whether time is based on local time, Coordinated Universal Time (UTC), or neither.
33.Reverse month and day to conform to the fr-FR culture