Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IParseable.cs
Go to the documentation of this file.
1
using
System.Diagnostics.CodeAnalysis
;
2
using
System.Runtime.Versioning
;
3
4
namespace
System
;
5
6
[RequiresPreviewFeatures(
"Generic Math is in preview."
, Url =
"https://aka.ms/dotnet-warnings/generic-math-preview"
)]
7
public
interface
IParseable
<TSelf> where TSelf :
IParseable
<TSelf>
8
{
9
static
abstract
TSelf
Parse
(
string
s
,
IFormatProvider
? provider);
10
11
static
abstract
bool
TryParse
([NotNullWhen(
true
)]
string
?
s
,
IFormatProvider
? provider, out TSelf result);
12
}
System.IFormatProvider
Definition
IFormatProvider.cs:4
System.IParseable.TryParse
static bool TryParse([NotNullWhen(true)] string? s, IFormatProvider? provider, out TSelf result)
System.IParseable.Parse
static TSelf Parse(string s, IFormatProvider? provider)
System.IParseable
Definition
IParseable.cs:8
System.Diagnostics.CodeAnalysis
Definition
AllowNullAttribute.cs:1
System.Runtime.Versioning
Definition
NonVersionableAttribute.cs:1
System.ExceptionArgument.s
@ s
System
Definition
BlockingCollection.cs:8
source
System.Private.CoreLib
System
IParseable.cs
Generated by
1.10.0