Elders.VSE_FormatDocumentOnSave.VisualStudioCommand.VisualStudioCommand C# (CSharp) Method

VisualStudioCommand() public method

public VisualStudioCommand ( string command, string arguments = "" ) : System
command string
arguments string
return System
        public VisualStudioCommand(string command, string arguments = "")
        {
            if (string.IsNullOrEmpty(command)) throw new ArgumentNullException(nameof(command));

            Command = command;
            Arguments = arguments;
        }
VisualStudioCommand