I have the following code: public void Dispose() { if (_instance != null) { _instance = null; // Call GC.SupressFinalize to take this object off the finalization
I have few Question for which I am not able to get a proper answer . 1) Why should we call SuppressFinalize in the Dispose function when we don\'t have a destructor .
I\'m new to code igniter.I\'m going to create some generic functions like random_string($length), row_co开发者_如何学Clor($evenStyle, $oddStyle) etc...