Clear() private method

private Clear ( ) : void
return void
Exemplo n.º 1
0
 /// <include file='doc\DataRow.uex' path='docs/doc[@for="DataRow.ClearErrors"]/*' />
 /// <devdoc>
 /// <para> Clears the errors for the row, including the <see cref='System.Data.DataRow.RowError'/>
 /// and errors set with <see cref='System.Data.DataRow.SetColumnError'/>
 /// .</para>
 /// </devdoc>
 public void ClearErrors()
 {
     if (error != null)
     {
         error.Clear();
     }
 }