Category Archives: .Net

Design is a contexual process

(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 [...]

  • RSS
  • Print
  • PDF
  • Twitter
  • del.icio.us
  • Facebook
  • LinkedIn
  • Google Bookmarks
  • Digg
  • Add to favorites
  • StumbleUpon

New features of C# 3.0

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()     { [...]

  • RSS
  • Print
  • PDF
  • Twitter
  • del.icio.us
  • Facebook
  • LinkedIn
  • Google Bookmarks
  • Digg
  • Add to favorites
  • StumbleUpon

C# and .Net Delegates

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 [...]

  • RSS
  • Print
  • PDF
  • Twitter
  • del.icio.us
  • Facebook
  • LinkedIn
  • Google Bookmarks
  • Digg
  • Add to favorites
  • StumbleUpon

Example of Code Snippet for Visual Studio

Ever wondered how to write code snippet? Have a look at these simple example code snippets – these are specially for people who learn by looking! You have to place these code snippets (basically XML) into file with .snippet extension. Then you can put all your snippet files into appropriate directory. This directory can be [...]

  • RSS
  • Print
  • PDF
  • Twitter
  • del.icio.us
  • Facebook
  • LinkedIn
  • Google Bookmarks
  • Digg
  • Add to favorites
  • StumbleUpon

Programmers need these!

Large monitor, or if possible – two of them! Reasonably fast PC (compiler, IDE, browser and db server etc to go fast) As much RAM as possible(PC should not slow down due to lack of RAM when RAM could be expanded) Reasonably fast internet connection (Not to watch movies, but to view self-learning videos etc) [...]

  • RSS
  • Print
  • PDF
  • Twitter
  • del.icio.us
  • Facebook
  • LinkedIn
  • Google Bookmarks
  • Digg
  • Add to favorites
  • StumbleUpon