Thursday, October 27, 2011
C# Sample Programs
Linear Search Program
using System;
class linSearch
{
public static void Main()
{
int[] a= new int[100];
Console.WriteLine("Enter number of elements you want to hold in the array ?");
string s=Console.ReadLine();
int x=Int32.Parse(s);
Console.WriteLine("-------------------------");
Console.WriteLine("\n Enter array elements \n");
for(int i=0;i<x;i++)
{
string s1=Console.ReadLine();
a[i]=Int32.Parse(s1);
}
Console.WriteLine("-------------------------");
Console.WriteLine("Enter Search element\n");
string s3=Console.ReadLine();
int x2=Int32.Parse(s3);
for(int...
Visual Studio Keyboard Shortcuts
Visual Studio 2003 & 2005 Default Keyboard Shortcuts
Text Manipulation Copy Ctrl + C
Cut
Ctrl + X Paste Ctrl + V
Undo
Ctrl + Z Redo Ctrl + Shift + Z
Transpose characters
Ctrl + T Transpose Lines Shift + Alt + T
Transpose Words
Ctrl + Shift + T Cut Line Ctrl + L
Delete Line
Ctrl + Shift + L Insert Line Above Ctrl + Enter
Insert Line Below
Ctrl + Shift + Enter Delete word to right Ctrl + Delete
Delete word to left
Ctrl + Backspace Collapse All Ctrl + M, O
Toggle outlining
Ctrl + M, M Toggle All Outlining Ctrl + M, L
Comment Selection
Ctrl +...
Narayana Murthy

N. R. Narayana Murthy
Nagavara Ramarao Narayana Murthybetter known as N. R. Narayana Murthy, is an Indian businessman and a software engineer. He is the founder and currently the non-executive Chairman and Chief Mentor of Infosys Technologies Limited.
Murthy currently serves as an independent director on the boards of DBS Bank, HSBC and Unilever. He...