[Mono-list] SqliteDataAdapter and SqliteParameterCollection

Thomas Zoechling thomas.zoechling@gmx.at
Mon, 24 Jan 2005 12:00:58 +0100


Why is GetEnumerator() not implemented?
http://svn.myrealbox.com/source/trunk/mcs/class/Mono.Data.SqliteClient/Mono.Data.SqliteClient/SqliteParameterCollection.cs

Wouldnt it simply be:

public IEnumerator GetEnumerator ()
{
 	this.RecreateNamedHash ();
	return named_param_hash.GetEnumerator();
}

Or am i totally wrong here?
If someone could point me in the right direction i would try to 
implement it.