以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  全局代码  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=8029)

--  作者:qtcks
--  发布时间:2010/8/30 21:46:00
--  全局代码

该代码改如何处理

全局代码中

Imports System
Imports System.Globalization
Imports System.Security.Permissions
Imports System.Threading

<assembly: SecurityPermission(SecurityAction.RequestMinimum, ControlThread := True)>
Public Class SamplesCultureInfo

   Public Shared Sub Main()

      \' Displays the name of the CurrentCulture of the current thread.
      Console.WriteLine("CurrentCulture is {0}.", CultureInfo.CurrentCulture.Name)

      \' Changes the CurrentCulture of the current thread to th-TH.
      Thread.CurrentThread.CurrentCulture = New CultureInfo("th-TH", False)
      Console.WriteLine("CurrentCulture is now {0}.", CultureInfo.CurrentCulture.Name)

      \' Displays the name of the CurrentUICulture of the current thread.
      Console.WriteLine("CurrentUICulture is {0}.", CultureInfo.CurrentUICulture.Name)

      \' Changes the CurrentUICulture of the current thread to ja-JP.
      Thread.CurrentThread.CurrentUICulture = New CultureInfo("ja-JP", False)
      Console.WriteLine("CurrentUICulture is now {0}.", CultureInfo.CurrentUICulture.Name)

   End Sub \'Main

End Class \'SamplesCultureInfo


\'This code produces the following output, if the ControlThread permission is granted (for example, if this code is run from the local drive).
\'
\'CurrentCulture is en-US.
\'CurrentCulture is now th-TH.
\'CurrentUICulture is en-US.
\'CurrentUICulture is now ja-JP.


 

[此贴子已经被作者于2010-8-30 21:46:47编辑过]

--  作者:czy
--  发布时间:2010/8/30 23:06:00
--  
哈,不懂这个。
--  作者:lxl
--  发布时间:2010/8/31 8:55:00
--  

直接去掉就行