NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HxLink DID NOT INITIALIZE

/optimize (Enable/disable Optimizations)

Enables or disables compiler optimizations. /optimize[+ | -]

Remarks

Compiler optimizations make your output file smaller, faster, and more efficient but can make debugging difficult. By default, /optimize is in effect. Specifying /optimize is the same as specifying /optimize+.

To prevent an optimized output file, specify /optimize-.

It is possible to combine the /optimize and /debug options.

Example

Compile t2.vb and enable compiler optimizations:

vbc t2.vb /optimize

See Also

Visual Basic Compiler Options