[]
Represents an Exif field with 16-bit signed integer values.
public class ExifSShort : ExifValue, IComparable<ExifValue>
Gets the Exif data type of a value.
public override ExifDataType DataType { get; }
Gets the value of type Int16.
public short Value { get; }
Gets the array of values of type Int16.
public short[] Values { get; }
Determines if the specified ExifSShort is equal to the current one.
public bool Equals(ExifSShort other)
other
ExifSShortDetermines 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 ExifSShort objects for equality.
public static bool operator ==(ExifSShort left, ExifSShort right)
left
ExifSShortright
ExifSShortCompares two ExifSShort objects for inequality.
public static bool operator !=(ExifSShort left, ExifSShort right)
left
ExifSShortright
ExifSShort