[]
Represents an Exif field with double-precision floating-point numbers.
public class ExifDouble : ExifValue, IComparable<ExifValue>
Gets the Exif data type of a value.
public override ExifDataType DataType { get; }
Gets the value of type Double.
public double Value { get; }
Gets the array of double-precision floating-point numbers.
public double[] Values { get; }
Determines if the specified ExifDouble is equal to the current one.
public bool Equals(ExifDouble other)
other
ExifDoubleDetermines 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 ExifDouble objects for equality.
public static bool operator ==(ExifDouble left, ExifDouble right)
left
ExifDoubleright
ExifDoubleCompares two ExifDouble objects for inequality.
public static bool operator !=(ExifDouble left, ExifDouble right)
left
ExifDoubleright
ExifDouble