欢迎来到天天文库
浏览记录
ID:21244797
大小:1.24 MB
页数:103页
时间:2018-10-20
《微软认证考试资料》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、专业技术资料分享1、question1YouworkastheapplicationdeveloperatCer-Tech.com.Cer-Tech.comusesVisualStudio.Net2005asitsapplicationdevelopmentplatform.你在Cer-Tech.com做应用程序开发人员,Cer-Tech.com使用VS2005作为其应用程序的开发平台。Youaredevelopinga.NetFramework2.0applicationusedtostoreatype-safelistofnamesande-mailaddresse
2、s.你正在开发一个.NetFramework2.0应用程序,用来存储一个包含了姓名和电子邮件的类型安全的列表(清单)。Thelistwillbepopulatedallatoncefromthesorteddatawhichmeansyouwellnotalwaysneedtoperforminsertionordeletionoperationsonthddata.这个列表会被完全的填充从排序的数据,这就意味着你不需要经常对这些数据完成插入或删除操作。Youarerequiredtochooseadatastructurethatoptimizes(优化)memory
3、useandhasgoodperformance.请你选择一个数据结构,以便优化内存使用,具有良好的性能。Whatshouldyoudo?该如何做?A、TheSystem.Collections.Generic.SortedListclassshouldbeusedB、TheSystem.Collections.HashTableclassshouldbeusedC、TheSystem.Collections.Generic.SortedDictionaryclassshouldbeusedD、TheSystem.Collections.SortedListclasss
4、houldbeused点评:SortedList表示键/值对的集合,这些键值对按键排序并可按照键和索引访问。HashTable表示键/值对的集合,这些键值对根据键的哈希代码进行组织。C该类不存在D非类型安全的,没有引人泛型。2、Question2YouworkasanapplicationdeveloperatCer-Tech.com.Youhaverecentlycreatedanapplicationthatincludethecodeshownbelow.你在Cer-Tech.com做应用程序开发人员。最近你创建了一个应用程序,包含如下的代码:publicdele
5、gatestringGetFileContentsDel();publicstringGetFileContens(){//Processfileandreturnresults}YounowneedtoinvoketheGetFileContentsmethodasynchronously(异步).YouhavetoensurethatthecodeyouusetoinvoketheGetFileContentsmethodwillcontinuetoprocessotheruserinstructions,anddisplaystheresultsassoonast
6、heGetFileContentsmethodfinishesprocessing.Whatshouldyoudo?现在你需要异步调用GetFileContents方法。必须确保你的代码在调用GetFileContents方法的同时将继续处理其他用户的指令,并在GetFileContents方法完成处理后显示结果。你应该怎么做?WORD资料下载可编辑专业技术资料分享A、Usethefollowingcode://创建委托对象并且实例化GetFileContentsDeldelAsync=newGetFileContentsDel(GetFileContents);IAs
7、yncResultresult=delAsync.BeginInvoke(null,null);while(!resul.IsCompleted){//Processotheruserinstructions}stringstrFile=delAsync.EndInvoke(result);B、Usethefollowingcode:GetFileContentsDeldelAsync=newGetFileContentsDel(GetFileContents);stringstrFile=delAsync.Invoke();//直接调用
此文档下载收益归作者所有