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!

^ Operator Example

This example uses the ^ operator to raise a number to the power of an exponent.

Dim MyValue
MyValue = 2 ^ 2   ' Returns 4.
MyValue = 3 ^ 3 ^ 3   ' Returns 19683.
MyValue = (-5) ^ 3   ' Returns -125.