Say you have the following function that takes in a ref
parameter:
void modify(ref int num) {
num += 5;
}
Does the compiler turn that into the code below?
void modify(int* num) {
num += 5;
}
I was just wondering whether or not this is the case because I don't think this was touched in the book about D I am reading.