~mysql-clr-team/connectornet/5.2

« back to all changes in this revision

Viewing changes to MySql.Data/Provider/Source/parameter_collection.cs

  • Committer: Reggie Burnett
  • Date: 2009-07-31 22:51:28 UTC
  • Revision ID: reggie.burnett@sun.com-20090731225128-cixnt7p57oxak81c
various cleanups found between mono and .net compilers

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
        {
39
39
        private ArrayList items = new ArrayList();
40
40
        private Hashtable indexHash;
41
 
        private MySqlCommand owningCommand;
42
41
 
43
42
                internal MySqlParameterCollection(MySqlCommand cmd)
44
43
                {
45
44
                        indexHash = new Hashtable(StringComparer.CurrentCultureIgnoreCase);
46
45
            Clear();
47
 
            owningCommand = cmd;
48
46
                }
49
47
 
50
48
                #region Public Methods