Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
StringBuilder temp = new StringBuilder("Hello World!");
foo(temp);
...
void foo (StringBuilder s) {
s = new StringBuilder("Goodbye World!");
}
StringBuilder temp = new StringBuilder("Hello World!");
foo(ref temp);
...
void foo (ref StringBuilder s) {
s = new StringBuilder("Goodbye World!");
}