IMSL C# Numerical Library

Warning.Print Method 

Issues a warning message.

public static void Print(
   object source,
   string bundleName,
   string key,
   object[] arg
);

Parameters

source
The Object that is the source of the warning.
bundleName
A String which specifies the base name of the resource. The actual name is formed by appending ".ErrorMessages".
key
A String which specifies the warning message in the resource.
arg
A Object which specifies arguments used to format the message.

Remarks

Warning messages are stored as MessageFormat patterns in a ResourceBundle. This method retrieves the pattern from the bundle, formats the message with the supplied arguments, and prints the message to the warning stream.

See Also

Warning Class | Imsl Namespace