0 comments Sunday, October 28, 2007

Hi ALL,

Another big change from Google. For the first time in the free webmail world, Gmail starts offering IMAP support. It should be available to all the users in a few days.

http://www.techtalkz.com/blog/google/gmail-introduces-imap-support.html


Regards
Pankaj

0 comments

Hi All,
Somethimes we need to find the value from Geerics list. So here is the example

public static CustomOBJ GetConfigValue(CustomOBJ Id)
{
List customOBJ= List();


CustomOBJ m_CustomOBJ= customOBJ.Find(delegate(CustomOBJ customOBJ) { return customOBJ.Any_id_ToSearch == Id; });
return m_CustomOBJ;
}


Regards
Pankaj