单项选择题
You are creating a Windows Forms application by using the .NET Framework 3.5 The application is used by a financial service provider.You discover that the service provider transfers large amounts of data by using XML. You need to read and validate the XMLdocuments in the most time efficient manner.Which technology should you use?()
A.The XmlReader class
B.The XmlDocument class
C.The XmlResolver class
D.The LINQ to XML method
相关考题
-
单项选择题
YouarecreatingaWindowsFormsapplicationbyusingthe.NETFramework3.5.Youhaveresourcefilesinfivedifferentlanguages.Youneedtotesttheapplicationineachlanguage.Whatshouldyoudo?()
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?()
A.Handle server names and URLs as ASCII data
B.Use Unicode strings throughout the application
C.Use the NumberFormatInfo class for numeric formatting
D.Handle strings as a series of individual characters instead of entire strings
E.Avoid usage of the SortKey class and the CompareInfo class for sorting purposes -
单项选择题
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?()
A.public void DoWork();
B.public void DoWork(int nCounter);
C.public void DoWork(object oCounter);
D.public void DoWork(Delegate oCounter);
