You look at a thing and you want to describe and understand it. There are many ways, but we can broadly define two principal ways. Outside View Point (OVP): Everything has external view to its environment. When a thing is described with less focus on its internals, that is OVP. Inside View Point (IVP): Everything [...]
It is highly likely that India will be challanged even more for cost efficiency and higher valued services. Here are some observations and predictions from Gartner, Bernstein Research and Forrester Research; with my interpretation for implications. Evolving From Evolving To Implications Offshore labor primarily in India Labor in multiple geographies India will have competition; also [...]
(Though following is written from point of view of software designer, ideas are valueable to any engineering designer.) Software design is creative process. Design involves significant mental efforts towards creating new ideas or using existing ones for a purpose. Software does not exist before you design it. You, as a designer, play a role of [...]
Look at simple source code to learn few of new features of C# 3.0. 12345678910111213141516171819202122232425262728293031323334353637public class Book { //Auto implemented properties public string Name { get; set; } public int ID { get; set; } } public class AllLINQ { public static void ShowAll() { [...]
Please read following simple source to know more about delegates in C# and .Net. Note that this article is for people who wants to learn by looking at simple sample source code without reading too much weed. 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465using System; namespace Delegates { class Program { //Following is [...]