<PackageReference Include="NETStandard.Library" Version="2.0.0" />
System.Single
namespace System
{
public struct Single :
IComparable,
IComparable<
float>,
IConvertible,
IEquatable<
float>,
IFormattable
{
public const float Epsilon =
1E-45;
public const float MaxValue =
3.4028235E+38;
public const float MinValue =
-3.4028235E+38;
public const float NaN =
0 /
0;
public const float NegativeInfinity =
-1 /
0;
public const float PositiveInfinity =
1 /
0;
public int CompareTo(
object value);
public int CompareTo(
float value);
public bool Equals(
float obj);
public TypeCode GetTypeCode();
public static bool IsInfinity(
float f);
public static bool IsNaN(
float f);
public static bool IsNegativeInfinity(
float f);
public static bool IsPositiveInfinity(
float f);
public static bool operator ==(
float left,
float right);
public static bool operator >(
float left,
float right);
public static bool operator >=(
float left,
float right);
public static bool operator !=(
float left,
float right);
public static bool operator <(
float left,
float right);
public static bool operator <=(
float left,
float right);
public static float Parse(
string s);
public static float Parse(
string s,
NumberStyles style);
public static float Parse(
string s,
NumberStyles style,
IFormatProvider provider);
public static float 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 float result);
public static bool TryParse(
string s,
out float result);
}
}