Recent Content

 

[22 Apr 2013 | One Comment | ]

This article discusses .NET assemblies and strong name signature. In addition to providing some benefits like versioning and giving name uniqueness to an assembly, strong name provides a strong integrity check, and here is the point of this article! By strongly naming an assembly, you are supposed to ensure that your binary has not been tampered with since it was compiled or built.

[16 Apr 2013 | No Comment | ]

This video guides you through what’s new in Team Foundation Server (TFS) 2012, changes in the Visual Studio Scrum template, how to use the new Agile project management tools and many other best practices.

[15 Apr 2013 | No Comment | ]

This video discusses singletons, and when to use them.The Singleton is a well-known pattern in software. It’s got a lot of bad reputation too, since it makes testing more difficult. It has even come to being called “Evil”.

[9 Apr 2013 | No Comment | ]

This tutorial explains C# and LINQ performance tips with the following topics:
1) String Vs StrinBuilder ,string.format
2) ArrayList vs List
3) List vs Dictionary
4) How to write optimized code in C#.
5) Garbage collector generations 0,1,2.

[3 Apr 2013 | No Comment | ]

Standing out in the Windows Phone marketplace is getting more and more difficult, but still achievable with high quality apps. The OS delivers a different look and feel compared to other platforms and as a results users expect, download and buy apps that are tailored for this platform.

[1 Apr 2013 | No Comment | ]

Learn how Microsoft’s ASP.NET Web API support enables you to expose services over plain HTTP, making it a snap to integrate server-side functionality with a broad range of client platforms and devices as well as create richer user experiences within the browser. We observed how easy it is to use ASP.NET Web API to create a powerful, RESTful Web API that can be consumed by virtually any connected client.

[27 Mar 2013 | No Comment | ]

Creating ReST architectures with ASP.NET MVC is more than just decorating actions with verbs. It’s about leveraging HTTP as an application protocol to its full potential. In doing so, we can create robust and scalable applications, not only from a performance point of view but also in terms of change and maintainability.

[27 Mar 2013 | No Comment | ]

This video is an introduction to the course, the training team and the subject matter (C# object oriented programming language) and your future in the industry.

[19 Mar 2013 | No Comment | ]

Greg Shackles discusses C#’s role in the mobile space and coding best practices. He thinks that the mature C# language is the only language that can be used across all of these platforms to produce a native experience.

[11 Mar 2013 | No Comment | ]

OWIN is an open hosting specification for .NET web applications. It enables you to create web applications which are portable across hosting environments and allows application components to be composed as a pipeline of middleware. This session will give a brief overview of the rationale for OWIN and how it works, and introduces the Gate library, which allows you to easily construct web application pipelines and host them in a variety of scenarios.