out ref local?
Seems I am able to do this:
but not this:
is there some syntax im missing or is this just not possible?
but not this:
is there some syntax im missing or is this just not possible?
ref int Test1(){
return ref ints[1];
}void Test2(out ref int a){
a = ref ints[1];
}