Свойство | Type | Description |
---|
Méthode | Description | |
---|---|---|
Add ( object leftHandSide, object rightHandSide ) : |
Adds two objects
|
|
Assign ( |
Assigns a value to a variable
|
|
Box ( object value ) : |
Boxes an object
|
|
Call ( |
Calls a method
|
|
Call ( |
Calls a constructor
|
|
Cast ( |
Casts an object as a specific type
|
|
Catch ( |
Starts a catch block
|
|
CreateConstant ( object value ) : |
Creates a constant
|
|
CreateLocal ( string name, |
Creates a local variable
|
|
Divide ( object leftHandSide, object rightHandSide ) : |
Divides two objects
|
|
EndIf ( |
Ends an if statement
|
|
EndTry ( ) : void |
Ends a try block
|
|
EndWhile ( |
Ends a while statement
|
|
If ( |
Creates an if statement
|
|
MethodBase ( ) : System |
Constructor
|
|
Modulo ( object leftHandSide, object rightHandSide ) : |
Modulo operator
|
|
Multiply ( object leftHandSide, object rightHandSide ) : |
Multiply two objects
|
|
NewObj ( |
Creates a new object
|
|
NewObj ( |
Creates a new object
|
|
Return ( ) : void |
Returns from the method
|
|
Return ( object returnValue ) : void |
Returns a value back from the method
|
|
SetCurrentMethod ( ) : void |
Sets the current method to this
|
|
Subtract ( object leftHandSide, object rightHandSide ) : |
Subtracts two objects
|
|
Throw ( |
Throws an exception
|
|
Try ( ) : |
Starts a try block
|
|
UnBox ( |
Unboxes an object
|
|
While ( |
Creates a while statement
|
public Add ( object leftHandSide, object rightHandSide ) : |
||
leftHandSide | object | Left hand side |
rightHandSide | object | Right hand side |
Résultat |
public Assign ( |
||
leftHandSide | Variable to assign to | |
value | object | Value to assign |
Résultat | void |
public Box ( object value ) : |
||
value | object | Variable to box |
Résultat |
public Call ( |
||
objectCallingOn | Object to call the method on | |
methodCalling | Method to call | |
parameters | object | parameters to use |
Résultat |
public Call ( |
||
objectCallingOn | Object to call the constructor on | |
methodCalling | Constructor to call | |
parameters | object | parameters to use |
Résultat | void |
public Cast ( |
||
value | Value to cast | |
valueType | Type to cast to | |
Résultat |
public Catch ( |
||
exceptionType | Exception type to catch | |
Résultat |
public CreateConstant ( object value ) : |
||
value | object | Constant value |
Résultat |
public CreateLocal ( string name, |
||
name | string | name of the local |
localType | Object type | |
Résultat |
public Divide ( object leftHandSide, object rightHandSide ) : |
||
leftHandSide | object | Left hand side |
rightHandSide | object | Right hand side |
Résultat |
public EndIf ( |
||
ifCommand | If command to end | |
Résultat | void |
public EndWhile ( |
||
whileCommand | While statement to end | |
Résultat | void |
public If ( |
||
leftHandSide | Left hand side variable | |
comparisonType | Comparison | Comparison type |
rightHandSide | Right hand side variable | |
Résultat |
public Modulo ( object leftHandSide, object rightHandSide ) : |
||
leftHandSide | object | Left hand side |
rightHandSide | object | Right hand side |
Résultat |
public Multiply ( object leftHandSide, object rightHandSide ) : |
||
leftHandSide | object | Left hand side |
rightHandSide | object | Right hand side |
Résultat |
public NewObj ( |
||
constructor | Constructor to use | |
variables | object | Variables to use |
Résultat |
public NewObj ( |
||
objectType | Object type | |
variables | object | Variables to use |
Résultat |
public Return ( object returnValue ) : void | ||
returnValue | object | Value to return |
Résultat | void |
public Subtract ( object leftHandSide, object rightHandSide ) : |
||
leftHandSide | object | Left hand side |
rightHandSide | object | Right hand side |
Résultat |
public Throw ( |
||
exception | Exception to throw | |
Résultat | void |
public UnBox ( |
||
value | Value to unbox | |
valueType | Type to unbox to | |
Résultat |
public While ( |
||
leftHandSide | Left hand side variable | |
comparisonType | Comparison | Comparison type |
rightHandSide | Right hand side variable | |
Résultat |