JuggerNET Runtime Library

IJvmOptions.DashXOption Property

The property that allows the specification of -X options.

DashXOptionType DashXOption {get;}

Remarks

Many -X options are available via more convenient properties.

Example

The two lines that follow are totally equivalent and could be used in the same application:

    loader.DashXOption[ "mx" ] = "256m";
    loader.MaximumHeapSizeInMB = 256;
The second line will override the first line's value becaues internally the two lines result in the same property being set.

See Also

IJvmOptions Interface | Codemesh.JuggerNET Namespace