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

◆ Guid() [6/6]

System.Guid.Guid ( string g)
inline

Definition at line 179 of file Guid.cs.

180 {
181 if (g == null)
182 {
183 throw new ArgumentNullException("g");
184 }
185 GuidResult result = new GuidResult(GuidParseThrowStyle.All);
186 bool flag = TryParseGuid(g, ref result);
187 this = result.ToGuid();
188 }
static bool TryParseGuid(ReadOnlySpan< char > guidString, ref GuidResult result)
Definition Guid.cs:309
GuidParseThrowStyle
Definition Guid.cs:17

References System.Guid.GuidResult.ToGuid(), and System.Guid.TryParseGuid().