<PackageReference Include="NETStandard.Library" Version="2.0.2" />
System.SByte
namespace System
{
public struct SByte :
IComparable,
IComparable<
sbyte>,
IConvertible,
IEquatable<
sbyte>,
IFormattable
{
public const sbyte MaxValue =
127;
public const sbyte MinValue =
-128;
public int CompareTo(
object obj);
public int CompareTo(
sbyte value);
public bool Equals(
sbyte obj);
public TypeCode GetTypeCode();
public static sbyte Parse(
string s);
public static sbyte Parse(
string s,
NumberStyles style);
public static sbyte Parse(
string s,
NumberStyles style,
IFormatProvider provider);
public static sbyte Parse(
string s,
IFormatProvider provider);
public string ToString(
IFormatProvider provider);
public string ToString(
string format);
public string ToString(
string format,
IFormatProvider provider);
public static bool TryParse(
string s,
NumberStyles style,
IFormatProvider provider,
out sbyte result);
public static bool TryParse(
string s,
out sbyte result);
}
}