17 lines
296 B
C#
Executable File
17 lines
296 B
C#
Executable File
namespace IPMonitor
|
|
{
|
|
public class Arguments : IArguments
|
|
{
|
|
private readonly String[] _args;
|
|
|
|
public Arguments(String[] args)
|
|
{
|
|
_args = args ?? throw new ArgumentNullException(nameof(args));
|
|
}
|
|
|
|
public String[] GetArguments()
|
|
{
|
|
return _args;
|
|
}
|
|
}
|
|
} |