Is there a way to store a pointer to immutable types like strings in C#? How can execute: Instance1.SomeFunction(out MyString);
,and store a pointer to MyString inside of Instance1?
feedback
|
|
In regards to the answer by the asker, what's wrong with:
| |||||||||||
feedback
|
|
Use this class as a pointer (note: untested notepad code, might need some fixing):
For example,
Should output
| |||||
feedback
|
|
I have been fighting with pointers in C# for a while now, and was amazed by the lack of options. You encounter all kinds of obscure obstacles when dealing with pointers and pointer arguments in C#:
Pretty neat solution I found recently, and also the reason for this post is:
| |||||||||||
feedback
|
|
Ok, I found another partial solution to my problem. You can use overloading, if you want some ref/out-arguments to have null values:
| |||
feedback
|