J
Jon
For example, how do I prevent the following function from appearing in the assembly manifest?
#pragma unmanaged
void Fn() {
int a = 1;
}
It is a large port, so transforming these global functions to statics of newly defined classes would be quit a effort.
#pragma unmanaged
void Fn() {
int a = 1;
}
It is a large port, so transforming these global functions to statics of newly defined classes would be quit a effort.