Elders.VSE_FormatDocumentOnSave.VisualStudioCommand.VisualStudioCommand C# (CSharp) 메소드

VisualStudioCommand() 공개 메소드

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

            Command = command;
            Arguments = arguments;
        }
VisualStudioCommand