Posts

Showing posts from September, 2015

Understanding C# Language By Sample Code

Learn C# with Code Examples In this article you are going learn to program in c#.It covers all most all oops concepts and file handing,exception handling, socket programming, threading, mathematical programs like palindrome,perfect number,Armstrong and so on. Lets start your journey by creating a console application in Visual Studio and add following lines in program.cs file.Every code block is provided with description of the concept or c# feature. Download the   PDF using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Net.Sockets; using System.Text; using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; namespace CSharpAndMe {       class Program     {         enum Days { Sun, Mon, tue, Wed, thu, Fri, Sat };         static void Main(string[] args)         {             //TODO: understanding string type             //Defination: