<PackageReference Include="NETStandard.Library" Version="2.0.0" />
System.Byte
namespace System
{
public struct Byte :
IComparable,
IComparable<
byte>,
IConvertible,
IEquatable<
byte>,
IFormattable
{
public const byte MaxValue =
255;
public const byte MinValue =
0;
public int CompareTo(
byte value);
public int CompareTo(
object value);
public bool Equals(
byte obj);
public TypeCode GetTypeCode();
public static byte Parse(
string s);
public static byte Parse(
string s,
NumberStyles style);
public static byte Parse(
string s,
NumberStyles style,
IFormatProvider provider);
public static byte 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,
out byte result);
public static bool TryParse(
string s,
NumberStyles style,
IFormatProvider provider,
out byte result);
}
}