Recently i came up with something called as Constructor to constructor call of the same class.
Got Confused??….In short if for a class there is one default constructor and one overloaded constructor than you can call overloaded constructor from default constructor and vice versa in C#.Net.
You can achieve this scenario using “this” operator.
Example
public class Example
{
private [...]
Archive for August, 2008
Constructor To Constructor Call…
Posted in .Net on August 24, 2008 | Leave a Comment »
SOA Principles
Posted in .Net on August 14, 2008 | Leave a Comment »
While i was reading the book on WCF called ” Professional WCF Programming “, i came up with something called as “SOA Principles”. This particular topic was quite interesting and many of my wrong concept was cleared.
A Web Service which provides both read as well as write shows no SOA, which was quite new to [...]
Two Legends Together…
Posted in General Talk on August 12, 2008 | Leave a Comment »
Coming weekend will be one of my most memorable day. I was eagerly waiting for this day.
NDTV is bringing two legend together for a show i.e. WARREN BUFFETT…THE LEGEND and BILL GATES…THE GREAT.
Multi-billionaires Warren Buffett and Bill Gates together represent almost $100 billion in personal wealth. I am pesonally a gr8 fan of Warren Buffett [...]
Scour Search
Posted in Technical on August 10, 2008 | 2 Comments »
A one more competitor in the search engine war. After Google, Yahoo, Microsoft Live, Altavista, Dogpile…and many more, we have one more new competitor who entered in this war i.e. Scour.
As such i didnt find nething interesting in this search engine. Its features is it combines all the result of google, yahoo and live which [...]
Finding Objects in Generic List
Posted in .Net on August 8, 2008 | 2 Comments »
In my current project of migration there was a requirement of finding an object in Genercs. If you ask for the solution to any of the .Net programmers, the only suggestion they will give is to loop thru the List and than find the object. If u r also thinking the same or have implemented [...]