Jm,

You gave me an example ...

Code:
Type typ1 = typeof(string);

string str = "Hello World";
Type typ2 = str.GetType();

I understand by getting Type object we can get more details like the methods, member infor, attributes etc..but under what circumstances do we need to know those details??
can you point to me any example code that reads more details of an object using Type??
thanks
nath