(Tom Fischer) Enums in .NET are strongly-typed constants that allow you to share a multi-valued property across applications. When used in a XAML application with view-models it can provide a design choice that greatly simplifies the handling of related boolean attributes.
Tag: Development
The conditional attribute
(Christiaan Baes) The conditional attribute is described as follows by MSDN.
How to create a countdown timer application using C# and WinForms
(chirag kanzariya) In this tutorial I will explain how to create a countdown application in C#. For this application I did not declare any additional namespaces.
Juice UI – Supercharge ASP.NET Web Forms With jQuery UI
(Hirvesh) Juice UI is an open-source collection of WebForms components that brings jQuery UI Widgets to your project with ease. Start leveraging the power of the world’s most popular JavaScript UI library while working with familiar code in your ASP.NET projects.
Asp.net Session State Example in C#, VB.NET
(Suresh Dasari) Here I will explain SessionState in asp.net with example using c# and vb.net.
Inside the New Single Page Apps Template
(John Papa) There are a bunch of shiny new toys, including a new Single Page App (SPA) template, inside the ASP.NET Fall 2012 Update BUILD Prelease ( Download link for it is on this page here ) . The original template for SPA made an appearance over a year ago in a preview and was later removed pri
TypeScript: JavaScript like Programming Language by Microsoft
(Abhimanyu) Okay, here is a great news, Microsoft has released a developer preview of TypeScript, a new programming language like JavaScript that is translated into JavaScript so that its apps can be run in any browser. In other words, TypeScript is a superset of JavaScript and you write it like you
Obtaining a Stack Trace
(Richard Carr) Call stacks are used to control the flow of programs as methods and properties are executed and terminated. When adding diagnostic code, such as logging, to software it can be useful to examine the call stack for a thread or exception using a stack trace.
ASP.NET Multi Threading
(Dinesh Singh Malik) I have been reading a lot of on ASP.NET Web application performance enhancement and found it some how tedious job to learn ASP.NET Multi threading (as a beginner). So I thought i will share briefly about all the things required to have a better understanding of the concepts and
On Error GoTo statements in VB.NET
(abhinav ranjan sinha) Error GoTo statements is an example of Vb.Net’s Unstructured Exception Handling . VB.NET has two types of Exception handling . Structured Error Handling and Unstructured Error handling . VB.NET using Try..Catch statement for Structured Error handling and On Error GoTo statemen
