Tag Archives: C#

Singleton Design pattern

C#: Singleton Design Pattern SlideShow and ScreenCast

Welcome to CodeSpread!Here is a slide show and  screencast of Singleton Design Pattern . This slide show is also available for download. You can also check the screencast on our youtube channel.

Design Pattern

C#: Singleton Design Pattern

We know the existence of a design pattern is dependent on a recurring problem. Once the problem is identified, then a well established solution is proposed theoretically and different implementation techniques were tried and adopted to resolve the problem. Now, These solutions were always available but it took some time to frame them as a…..

Csharp

How to view Intermediate Code in C# using Ildasm.Exe

Hi guys, this is Sathish again, today let’s discuss how to view the intermediate code in c#. We know that CLR (Common Language Runtime) is used to convert the MSIL (Microsoft Intermediate Language) which is a pseudo code, into an executable program when a program runs. Knowing this, let’s discuss how to view MSIL using…..

Resolved-error

Don’t Mess with App_Offline

One of the most useful features of ASP.NET is the “App_Offline.htm” . It provides a much easy way to make the ASP.NET application offline while we do our modifications on the site. How we do it? We just create a file and name it exactly  as ‘app_offline’ and place it in the root of a web…..

Csharp

Create a browser in C# WinForms

Hi Guys, This is Sathish, one of my friend was finding difficult in creating his own web browser, so I thought lets create a simple web browser in win forms of c# and share it with you. We are only going to use buttons, labels etc. in Win-forms and achieve our goal. Let’s start our…..

Csharp

My first experience with LISTS in C#

Hi guys, this is Sathish, Lets discuss the concepts of lists. These are the concepts which I have planned to discuss with you guys today. What is a List and how it is advantageous than array list Creation of the list. Different methods in list. What is a list? A List is a collection of…..