diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-04-25 11:19:13 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-04-25 11:19:13 +0200 |
commit | 7e874613ff22bedf988273b51a15ab937f01169f (patch) | |
tree | 115a92a902f80fcc6252c5fac6a957ecc548b82c /cs/src/Ice/Options.cs | |
parent | Fixed copyrights (diff) | |
download | ice-7e874613ff22bedf988273b51a15ab937f01169f.tar.bz2 ice-7e874613ff22bedf988273b51a15ab937f01169f.tar.xz ice-7e874613ff22bedf988273b51a15ab937f01169f.zip |
Merged Silverlight support
Diffstat (limited to 'cs/src/Ice/Options.cs')
-rw-r--r-- | cs/src/Ice/Options.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cs/src/Ice/Options.cs b/cs/src/Ice/Options.cs index 46b9b2b15ad..8424e8651ac 100644 --- a/cs/src/Ice/Options.cs +++ b/cs/src/Ice/Options.cs @@ -7,7 +7,7 @@ // // ********************************************************************** -using System.Collections; +using System.Collections.Generic; using System.Diagnostics; using System.Globalization; @@ -38,7 +38,7 @@ namespace IceUtilInternal State state = State.Normal; string arg = ""; - ArrayList vec = new ArrayList(); + List<string> vec = new List<string>(); for(int i = 0; i < l.Length; ++i) { @@ -400,7 +400,7 @@ namespace IceUtilInternal } } - return (string[])vec.ToArray(typeof(string)); + return (string[])vec.ToArray(); } } } |