Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IParseable.cs
Go to the documentation of this file.
3
4namespace System;
5
6[RequiresPreviewFeatures("Generic Math is in preview.", Url = "https://aka.ms/dotnet-warnings/generic-math-preview")]
7public 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}
static bool TryParse([NotNullWhen(true)] string? s, IFormatProvider? provider, out TSelf result)
static TSelf Parse(string s, IFormatProvider? provider)