Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ParseList()

static ArgumentListResult Terraria.Testing.ChatCommands.ArgumentHelper.ParseList ( string arguments)
inlinestatic

Definition at line 7 of file ArgumentHelper.cs.

8 {
9 return new ArgumentListResult(from arg in arguments.Split(' ')
10 select arg.Trim() into arg
11 where arg.Length != 0
12 select arg);
13 }