qyli Posted February 24, 2011 Posted February 24, 2011 say class A { } A a; how can i check a is instanced? i tried if (a) but not work.
eugene.litvinov Posted February 24, 2011 Posted February 24, 2011 if (a != NULL) for some reason if (a) not work
Recommended Posts