A
alexl
hi,
how can I do this in managed c++
Int32 q = new Int32();
test(ref q);
Console.WriteLine("test: q: {0}",q); <== q shows 5
static void test(ref int p)
{
p = 5;
}
thx
how can I do this in managed c++
Int32 q = new Int32();
test(ref q);
Console.WriteLine("test: q: {0}",q); <== q shows 5
static void test(ref int p)
{
p = 5;
}
thx