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

◆ ParseExact() [2/2]

static Guid System.Guid.ParseExact ( string input,
string format )
inlinestatic

Definition at line 228 of file Guid.cs.

229 {
230 if (input == null)
231 {
232 throw new ArgumentNullException("input");
233 }
234 ReadOnlySpan<char> input2 = input;
235 if (format == null)
236 {
237 throw new ArgumentNullException("format");
238 }
239 return ParseExact(input2, format);
240 }
static Guid ParseExact(string input, string format)
Definition Guid.cs:228

References System.format, System.input, and System.Guid.ParseExact().

Referenced by System.Guid.ParseExact().