Highlighter.Net 2.0.0

GradientFormatter.HexToInt Method 

Converts a hex string into an int. Integer.parseInt(hex, 16) assumes the input is nonnegative unless there is a preceding minus sign. This method reads the input as twos complement instead, so if the input is 8 bytes long, it will correctly restore a negative int produced by Integer.toHexString() but not neccesarily one produced by Integer.toString(x,16) since that method will produce a string like '-FF' for negative integer values.

public static int HexToInt(
   string hex
);

Parameters

hex

See Also

GradientFormatter Class | Lucene.Net.Highlight Namespace