summaryrefslogtreecommitdiff
path: root/csharp/src/IceBox/Server.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/src/IceBox/Server.cs')
-rw-r--r--csharp/src/IceBox/Server.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/csharp/src/IceBox/Server.cs b/csharp/src/IceBox/Server.cs
index 4ed957c7396..6773c4a869a 100644
--- a/csharp/src/IceBox/Server.cs
+++ b/csharp/src/IceBox/Server.cs
@@ -28,13 +28,13 @@ public class Server
public override int run(string[] args)
{
- List<String> argSeq = new List<String>(args);
- const String prefix = "IceBox.Service.";
+ List<string> argSeq = new List<string>(args);
+ const string prefix = "IceBox.Service.";
Ice.Properties properties = communicator().getProperties();
Dictionary<string, string> services = properties.getPropertiesForPrefix(prefix);
foreach(KeyValuePair<string, string> pair in services)
{
- String name = pair.Key.Substring(prefix.Length);
+ string name = pair.Key.Substring(prefix.Length);
for(int i = 0; i < argSeq.Count; ++i)
{
if(argSeq[i].StartsWith("--" + name, StringComparison.CurrentCulture))
@@ -45,7 +45,7 @@ public class Server
}
}
- foreach(String s in argSeq)
+ foreach(string s in argSeq)
{
if(s.Equals("-h") || s.Equals("--help"))
{