-
I noticed that it will insert |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
To mark methods as non-const, place an exclamation mark after method name: public class Foo
{
public void Bar!()
{
...
}
} To mark object references as non-const, place an exclamation mark after class name:
To mark array references as non-const, place an exclamation mark after the pair of brackets:
For more complex references, such as reference to an array of object references, use an exclamation mark for every level:
|
Beta Was this translation helpful? Give feedback.
To mark methods as non-const, place an exclamation mark after method name:
To mark object references as non-const, place an exclamation mark after class name:
To mark array references as non-const, place an exclamation mark after the pair of brackets:
For more complex references, such as reference to an array of object references, use an exclamation mark for every level: