Definition at line 74 of file PasteArguments.cs.
75 {
79 {
81 {
83 bool flag = false;
85 foreach (
char c
in text)
86 {
87 if (c == '"')
88 {
89 throw new ApplicationException(SR.Argv_IncludeDoubleQuote);
90 }
91 if (char.IsWhiteSpace(c))
92 {
93 flag = true;
94 }
95 }
97 {
101 }
102 else
103 {
105 }
106 }
107 else
108 {
110 }
111 }
113 }
static void AppendArgument(ref System.Text.ValueStringBuilder stringBuilder, string argument)
References System.PasteArguments.AppendArgument(), System.SR.Argv_IncludeDoubleQuote, and System.text.