Class | Description |
---|---|
NOut |
A class that represents .NET out keyword @see http://msdn.microsoft.com/en-us/library/ee332485.aspx
The out keyword causes an argument to be passed by reference, not by value. |
NRef |
A class that represents .NET ref keyword @see http://msdn.microsoft.com/en-us/library/14akc2c7.aspx
The ref keyword causes an argument to be passed by reference, not by value. |