I
Ioannis Vranos
Why the following does not compile:
#using <mscorlib.dll>
int main()
{
int __gc *p= __gc new int;
}
while the following compiles?
#using <mscorlib.dll>
int main()
{
int __gc *p= new int;
}
#using <mscorlib.dll>
int main()
{
int __gc *p= __gc new int;
}
while the following compiles?
#using <mscorlib.dll>
int main()
{
int __gc *p= new int;
}