Hd.QueryExtensions.WhereClauseCollection.Remove C# (CSharp) Method

Remove() public method

Removes a specific from the .
is not found in the Collection.
public Remove ( WhereClause val ) : void
val WhereClause The to remove from the .
return void
		public void Remove(WhereClause val)
		{
			List.Remove(val);
		}