Hi all, I have been reading up on various operators used in Refelection and have seen the use of the typeof operator to obtain the type of a variable like the following
Type s = typeof(obj1);
if (s == typeof(string)){ //Do Something}
What does the following line do
Type type = typeof(string);
Thanks in advance.
Go to the complete details ...