.NET Development
文章平均质量分 80
闲云之然
就是喜欢一编程,二弹钢琴,三写小说。嘿嘿,一成二练三脑补ing。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
编写COM-Visible的Assembly的最佳实践(C#)
总结了一下最近工作中编写COM-visible的Assembly的最佳实践。 1. 在AssemblyInfo.cs中, 我设置了两个Attribute: [assembly: ComVisible(false)] [assembly: Guid("64729ced-7a8d-4c90-af7f-a41725cfe216")] 第一个Attribute表明我不希望Assembly中所有原创 2013-06-28 22:03:07 · 5517 阅读 · 0 评论 -
Using WebSocket in .NET 4.5 (Part 3)
Introduction Part 1 gives an overview of the WebSocket protocol and .NET WebSocket support. Part 2 demonstrates how to use WebSocket in traditional ASP.NET and MVC 4 webapplications. In this articl原创 2013-07-12 09:51:29 · 1296 阅读 · 0 评论 -
Using WebSocket in .NET 4.5 (Part 4)
Introduction Part 1 gives an overview of the WebSocket protocol and .NET WebSocket support. Part 2 demonstrates how to use WebSocket in traditional ASP.NET and MVC 4 web applications. Part 3 demons原创 2013-07-22 12:35:57 · 2515 阅读 · 1 评论 -
Using WebSocket in .NET 4.5 (Part 1)
In this serial of articles, I will share some knowledge I leart recently in using WebSocket in .NET 4.5. The WebSocket protocol was standarlized by IETF as RFC 6455. We could find the introduction on原创 2013-07-08 15:54:30 · 3484 阅读 · 3 评论 -
Using WebSocket in .NET 4.5 (Part 2)
Introduction Part 1 gives an overview to WebSocket protocol and .NET WebSocket support. Inthis article, I will demonstrate how to host a WebSocket server in atraditional ASP.NET or MVC 4 web app原创 2013-07-09 23:34:42 · 1882 阅读 · 0 评论 -
Best Practice in Writing a COM-Visible Assembly (C#)
I summarized some best practice rules in writing a COM-visible assembly according to my recent work. 1. In AssemblyInfo.cs, I wrote two attributes: [assembly: ComVisible(false)] [assembly: Guid("6原创 2013-06-27 00:25:00 · 1760 阅读 · 0 评论
分享