数据库存储方式 字段Friend 内容: qq,tt,bb
是用逗号隔开的,添加新的好友进Friend的时候怎么判断是否已经添加,如qq已经存在,VB用instr来做,
C#怎么做?  
string s = dr["Friend"].ToString();
string [] sArray = s.Split(',');
string myfriend="";
....????
for(int i=0;i<sArray.Length;i++)
{
    myfriend = sArray[i];
}
Response.Write()
???