Generates a hash code for the current System.Windows.Forms.Padding.
A 32-bit signed integer hash code.
The Padding.GetHashCode method uses the Padding.Right, Padding.Left, Padding.Top, and Padding.Bottom values to generate a 32-bit hash code that represents the current System.Windows.Forms.Padding.
A hash code is a number that corresponds to the value of an object (so two objects that have the same value should generate the same hash code). Hash codes are used to sort and store collections of objects. For example, a Hashtable represents a collection of key-and-value pairs that are organized based on the hash code of the key.
For more information on hash codes and hash functions, see the object.GetHashCode method.