unloading of resources

I’ve noticed that there is a few treads on this but somehow those doesn’t help in answering what i needed. I only wanted to unload a single image. For example, i loaded this image levelImg[selectedLevel] = Resources.Load(“abc”, Texture2D);
and i wanted to unload it later to save memory. How can I do it?

levelImg[selectedLevel] = null;

–Eric

i tried that but somehow the image is not unloaded…