diff options
Diffstat (limited to 'csharp/src/Ice/ProxyFactory.cs')
-rw-r--r-- | csharp/src/Ice/ProxyFactory.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/src/Ice/ProxyFactory.cs b/csharp/src/Ice/ProxyFactory.cs index 012a26b0afe..178d073150b 100644 --- a/csharp/src/Ice/ProxyFactory.cs +++ b/csharp/src/Ice/ProxyFactory.cs @@ -247,7 +247,7 @@ namespace IceInternal try { - v = System.Int32.Parse(arr[i], CultureInfo.InvariantCulture); + v = int.Parse(arr[i], CultureInfo.InvariantCulture); } catch(System.FormatException) { |