Modernize TestClient

This commit is contained in:
Cinder Biscuits
2019-10-30 20:39:56 -05:00
parent 06887457b5
commit b4929f83e0
7 changed files with 54 additions and 55 deletions

View File

@@ -1,4 +1,3 @@
using System;
using System.Collections.Specialized;
using System.Text.RegularExpressions;
@@ -100,12 +99,6 @@ namespace CommandLine.Utility
// Retrieve a parameter value if it exists
// (overriding C# indexer property)
public string this[string Param]
{
get
{
return (Parameters[Param]);
}
}
public string this[string Param] => (Parameters[Param]);
}
}