KeySizes

KeySizes


Represents a set of key sizes.


Implements:

IObject 

Public:

Properties:

NameDescription
 MaxSize (get) The maximum key size in bits.  
 MinSize (get) The mininum key size in bits.  
 SkipSize (get) The step size between keys in bits.

 

Methods:

NameDescription
 Equals This function determines if the value passed in is the same as the current object instance. Meaning, are the Value and this object the same object in memory.  
 GetHashCode Returns a psuedo-unique number used to help identify this object in memory. The current method is to return the value obtained from ObjPtr. If a different method needs to be impelmented then change the method here in this function.

An override might be necessary if the hashcode should be derived from a value contained within the class.  

 ToString Returns a string representation of this object instance. The default method simply returns the application name and class name in which this class resides.

A Person class may return the persons name instead.  

Remarks

All of the key sizes are represented by indicating a minimum key size and a maximum key size, then using a step to fill in key sizes between the two.

See Also

Project CorLib Overview

Class KeySizes Overview