Try this, it's what I use.
code:
var ChatWndContacts = ChatWnd.Contacts;
if(ChatWndContacts.Count == 1)
{
var e = new Enumerator(ChatWndContacts);
var Contact = e.item();
Contact.Email
<-----------------{other commands go here}------------->
}
EDIT: looks like I was beaten to it