Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Combine()
[4/4]
static
string
System.IO.Path.Combine
(
string
path1
,
string
path2
,
string
path3
,
string
path4
)
inline
static
Definition at line
322
of file
Path.cs
.
323
{
324
if
(path1 ==
null
|| path2 ==
null
|| path3 ==
null
|| path4 ==
null
)
325
{
326
throw
new
ArgumentNullException((path1 ==
null
) ?
"path1"
: ((path2 == null) ?
"path2"
: ((path3 == null) ?
"path3"
:
"path4"
)));
327
}
328
return
CombineInternal
(path1, path2, path3, path4);
329
}
System.IO.Path.CombineInternal
static string CombineInternal(string first, string second)
Definition
Path.cs:566
References
System.IO.Path.CombineInternal()
.
System
IO
Path
Generated by
1.10.0