随笔分类 -  C#

1 2 3 4 5 ··· 7 下一页
摘要:WCF 数据服务(以前称为“ADO.NET Data Services”)是 .NET Framework 的一个组件。可以使用此组件创建一些服务,利用开放式数据协议 (OData) 来借助具象状态传输 (REST)(可能为英文网页)语义通过 Web 或 Intranet 公开和使用数据。OData 将数据公开为可通过 URI 寻址的资源。 可使用 GET、PUT、POST 和 DELETE 这些标准 HTTP 谓词来访问和更改数据。OData 使用实体数据模型的实体关系约定,将资源公开为通过关联相关的实体集。 阅读全文
posted @ 2015-09-22 08:49 东风125 阅读(252) 评论(0) 推荐(0)
摘要:.NET Framework 4.5 其他版本 .NET Framework 提供了一组全面而集成的类,可用来方便地生成可以识别 XML 的应用程序。 通过以下命名空间中的类,可以分析和编写 XML,编辑内存中的 XML 数据,进行数据验证以及 XSLT 转换。 System.Xml System.Xml.XPath System.Xml.Xsl System.Xml.Sche... 阅读全文
posted @ 2015-09-22 08:47 东风125 阅读(240) 评论(0) 推荐(0)
摘要:http://csharptest.net/1250/why guid primary keys are a databases worst nightmare/ When you ask most people why using a GUID column for a primary key ... 阅读全文
posted @ 2015-09-17 10:12 东风125 阅读(232) 评论(0) 推荐(0)
摘要:This blog post was written for the Lockheed Martin Insight blog, sharing here for the external audience.Last month I started the Pluralsight summer ca... 阅读全文
posted @ 2015-09-10 23:11 东风125 阅读(673) 评论(0) 推荐(0)
摘要:This blog post describes how to re-template the Silverlight ProgressBar control to render a circular progress indicator. This approach uses an attache... 阅读全文
posted @ 2015-09-02 12:59 东风125 阅读(239) 评论(0) 推荐(0)
摘要:byRichard Carr, published athttp://www.blackwasp.co.uk/FolderRecursion.aspxSome applications must read the folder structure beneath an existing folder... 阅读全文
posted @ 2015-08-31 09:13 东风125 阅读(352) 评论(0) 推荐(0)
摘要:Milan IkitsUniversity of UtahJoe KnissUniversity of UtahAaron LefohnUniversity of California, DavisCharles HansenUniversity of UtahThis chapter presen... 阅读全文
posted @ 2015-08-29 22:16 东风125 阅读(557) 评论(0) 推荐(0)
摘要:indows Presentation Framework (WPF) gets a lot of mileage out of being layered on top of DirectX, including fast rendering, multimedia support, audio,... 阅读全文
posted @ 2015-08-07 10:24 东风125 阅读(632) 评论(0) 推荐(0)
摘要:http://yichuanshen.de/blog/2010/11/13/flipping-elements-with-wpf/Have you already seen ForgottenTime’s new flip animation eye candy? If not, it’s abou... 阅读全文
posted @ 2015-08-05 11:08 东风125 阅读(408) 评论(0) 推荐(0)
摘要:Web service standards: SOAP, REST, OData, and moreSo far, we've covered the components of aweb service, the messaging format and transport protocols.B... 阅读全文
posted @ 2015-07-23 17:52 东风125 阅读(399) 评论(0) 推荐(0)
摘要:In my opinion, if you are using WPF or Silverlight you should be using the MVVM design pattern. It is perfectly suited to the technology and allows yo... 阅读全文
posted @ 2015-07-20 09:18 东风125 阅读(329) 评论(0) 推荐(0)
摘要:引言在对Bitmap图片操作的时候,有时需要用到获取或设置像素颜色方法:GetPixel 和 SetPixel,如果直接对这两个方法进行操作的话速度很慢,这里我们可以通过把数据提取出来操作,然后操作完在复制回去可以加快访问速度两种方法其实对Bitmap的访问还有两种方式,一种是内存法,一种是指针法1... 阅读全文
posted @ 2015-06-28 08:07 东风125 阅读(495) 评论(0) 推荐(0)
摘要:Stephen Toub From MicroSoft Crop. Stephen Cleary It's All About the SynchronizationContext How would I run an async Task method synchronously? Should I expose synchronous wrappers for asynchronous m... 阅读全文
posted @ 2015-06-19 10:33 东风125 阅读(187) 评论(0) 推荐(0)
摘要:Improve response times and handle more users with parallel processingBuilding a web application using non blocking calls to the data layer is a great ... 阅读全文
posted @ 2015-06-15 17:57 东风125 阅读(217) 评论(0) 推荐(0)
摘要:http://blog.stephencleary.com/http://blogs.msdn.com/b/pfxteam/ 阅读全文
posted @ 2015-06-15 10:17 东风125 阅读(136) 评论(0) 推荐(0)
摘要:.NET Memory Allocation Profiling with Visual Studio 2012This post was written by Stephen Toub, a frequent contributor to theParallel Programming in .N... 阅读全文
posted @ 2015-06-13 15:28 东风125 阅读(191) 评论(0) 推荐(0)
摘要:I know that blog post title is sure a mouth-full, but it describes the whole problem I was trying to solve in a recent project.The ProjectLet me outli... 阅读全文
posted @ 2015-03-28 00:12 东风125 阅读(313) 评论(0) 推荐(0)
摘要:IIS VersionSpecial cases for 32-bit versions of Aspnet_regiis.exe6.0You can run the 32-bit version of Aspnet_regiis.exe under a 64-bit IIS6.0 installa... 阅读全文
posted @ 2015-02-06 23:47 东风125 阅读(695) 评论(0) 推荐(0)
摘要:Posted by Shiv Kumar on 23rd February, 2011 The Asynchronous Programming Model (or APM) has been around since .NET 1.1 and is still (as of .NET 4.0) the best/recommended solution for asynchronous I/... 阅读全文
posted @ 2015-01-28 08:42 东风125 阅读(453) 评论(0) 推荐(0)
摘要:So what’s New in WPF Version 4.5 Developer Preview ? Here is a list of the new features and their regarding post : Synchronously and Asynchronously validating data Improved Support for Establishing a... 阅读全文
posted @ 2015-01-22 10:22 东风125 阅读(169) 评论(0) 推荐(0)

1 2 3 4 5 ··· 7 下一页