单项选择题
A.Set the CurrentCulture property explicitly to the respective culture for each language.
B.Set the CurrentCulture property explicitly to IsNeutralCulture for each language.
C.Set the CurrentUICulture property explicitly to IsNeutralCulture for each language.
D.Set the CurrentUICulture property explicitly to the respective culture for each language.
多项选择题 YouarecreatingaWindowsFormsapplicationbyusingthe.NETFramework3.5.Youplantodeploytheapplicationinmultiplecountriesandlanguages.Youneedtoensurethattheapplicationmeetstheglobalizationrequirements.Whichtwoactionsshouldyouperform?()
单项选择题 You are creating a Windows Forms application by using the .NET Framework 3.5. The application requires a thread that accepts a single integer parameter. You write the following code segment (Line numbers are included for reference only.) Thread myThread = new Thread(new ParameterizedThreadStart(DoWork)) ; myThread.Start(100); You need to declare the method signature of the DoWork method. Which method signature should you use?()
单项选择题 You are creating a Windows application for graphical image processing by using the .NET Framework 3.5. You create an image processing function and a delegate.You plan to invoke the image processing function by using the delegate.You need to ensure that the calling thread meets the following requirements: (1)It is not blocked when the delegate is running (2)It is notified when the delegate is complete What should you do?()