<PackageReference Include="NETStandard.Library" Version="2.0.0" />

System.UInt16

public struct UInt16 : IComparable, IComparable<ushort>, IConvertible, IEquatable<ushort>, IFormattable
namespace System { public struct UInt16 : IComparable, IComparable<ushort>, IConvertible, IEquatable<ushort>, IFormattable { public const ushort MaxValue = 65535; public const ushort MinValue = 0; public int CompareTo(object value); public int CompareTo(ushort value); public bool Equals(ushort obj); public TypeCode GetTypeCode(); public static ushort Parse(string s); public static ushort Parse(string s, NumberStyles style); public static ushort Parse(string s, NumberStyles style, IFormatProvider provider); public static ushort 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 ushort result); public static bool TryParse(string s, out ushort result); } }