[Mono-bugs] [Bug 38143][Nor] Changed - Problem using IDataParameterCollection
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Sat, 15 Feb 2003 15:38:14 -0500 (EST)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by carlosga@telefonica.net.
http://bugzilla.ximian.com/show_bug.cgi?id=38143
--- shadow/38143 Sat Feb 15 12:29:06 2003
+++ shadow/38143.tmp.29718 Sat Feb 15 15:38:14 2003
@@ -66,6 +66,24 @@
Carlos Guzmán Álvarez
Vigo-Spain
------- Additional Comments From gonzalo@ximian.com 2003-02-15 12:29 -------
The indexer in IDbCommand.IDataParameterCollection takes a string...
Is csc failing?
+
+------- Additional Comments From carlosga@telefonica.net 2003-02-15 15:38 -------
+>> Is csc failing?
+
+I think no because IDataParameterCollection implements IList:
+
+public interface IDataParameterCollection : IList, ICollection,
+ IEnumerable
+
+
+And IList ave an indexer by an int:
+
+object this[
+ int index
+] {get; set;}
+
+
+