Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ArgumentHelper.cs
Go to the documentation of this file.
1
using
System.Linq
;
2
3
namespace
Terraria.Testing.ChatCommands
;
4
5
public
static
class
ArgumentHelper
6
{
7
public
static
ArgumentListResult
ParseList
(
string
arguments)
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
}
14
}
Terraria.Testing.ChatCommands.ArgumentHelper.ParseList
static ArgumentListResult ParseList(string arguments)
Definition
ArgumentHelper.cs:7
Terraria.Testing.ChatCommands.ArgumentHelper
Definition
ArgumentHelper.cs:6
Terraria.Testing.ChatCommands.ArgumentListResult
Definition
ArgumentListResult.cs:8
System.Linq
Definition
ImmutableArrayExtensions.cs:4
Terraria.Testing.ChatCommands
Definition
ArgumentHelper.cs:3
source
Terraria.Testing.ChatCommands
ArgumentHelper.cs
Generated by
1.10.0