[]
Represents an Exif field with single-precision floating-point numbers.
public class ExifFloat : ExifValue, IComparable<ExifValue>
Gets the Exif data type of a value.
public override ExifDataType DataType { get; }
Gets the value of type Single.
public float Value { get; }
Gets the array of single-precision floating-point numbers.
public float[] Values { get; }
Determines if the specified ExifFloat is equal to the current one.
public bool Equals(ExifFloat other)
other
ExifFloatDetermines whether the specified object is equal to the current object.
public override bool Equals(object obj)
obj
objectReturns a hash code for the current object.
public override int GetHashCode()
Returns a string that represents the current object.
public override string ToString()
Compares two ExifFloat objects for equality.
public static bool operator ==(ExifFloat left, ExifFloat right)
Compares two ExifFloat objects for inequality.
public static bool operator !=(ExifFloat left, ExifFloat right)