This is default featured post 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Thursday, February 17, 2011

Operator Overloading in C#

Operator Overloading in C# Here is simple and easy example of operator overloading.using System;class Rectangle { private int iHeight; private int iWidth;public Rectangle() { Height=0; Width=0; } public Rectangle(int w,int h) { Width=w; Height=h; }public int Width { get { return iWidth; } set { iWidth=value; } } public int Height { get { return iHeight; } set { iHeight=value; } }public int Area { get { return Height*Width; } }/* OverLoading == */public static bool operator==(Rectangle a,Rectangle b) { return ((a.Height==b.Height)&&(a.Width==b.Width)); }/* OverLoading != */public static bool operator!=(Rectangle a,Rectangle b) { return !(a==b); }/* Overloding > */public static bool operator>(Rectangle a,Rectangle b) { return a.Area>b.Area; }/* Overloading < */ public static...

.NET Framework For Java Programmers

.NET Framework For Java Programmers ObjectiveAfter reading this article Java programmers should be able to decipherand de-jargonize the .NET architecture and relate it with the proposedECMA standard.  Target AudienceJava programmers and system architects.SummaryThis article outlines Microsoft's proposed standardization of .NET frameworkin ECMA forum as CLI (Common Language Infrastructure), but the Microsoftdocumentation refer this as CLR (Common Language Runtime). The CLR andJVM are compared with respect to market forces which shaped the CLR definition.Components of CLR are examined followed by details of Microsoft's implementationof the CLR as the .NET framework.All along .NET framework is compared with Java architecture.The material is derived from author's own experience with Java...

Pages 3123 »