try
{
Data="RETR "+this.textBox8.Text+this.CRLF;
SData=System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray());
this.NetStream.Write(SData,0,SData.Length);
scTemp=this.RdStrm.ReadLine();

if(scTemp[0]!='-')
{
while(scTemp!=".")
{
  this.richTextBox1.Text+=scTemp;  scTemp=this.RdStrm.ReadLine(); }

}
Cursor.Current=cr;
                
}
catch(Exception err)
{

  MessageBox.Show(err.Message.ToString());
}
这样读出来的是该邮件的所有的内容,怎么样才能提取正文?