Modernize TestClient
This commit is contained in:
@@ -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]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user