IEnumerable Vs IEnumerator December 31, 2018 Friends This is one of most basic things to understand in .Net Collections (not sure if it is same in Java or other langs). IEnumerable is superclass of all we use Lists, Dictionaries, HashTables and all others. Read more
Difference between Convert.ToString() and .ToString() December 31, 2018 Friends Always remember -> whenever we are using Convert. with anything, it can handle nulls without throwing errors. Read more