In .NET Compact Framework, can I free memory explicitly without waiting for garbage collector to free the memory?
Yes you can clear the memory using gc.collect method but it is recommended that u should not call this coz we don't know the precise time when the gc will be called automatic.