Skip to main content

Posts

Showing posts from December, 2018

IEnumerable Vs IEnumerator

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.

Difference between Convert.ToString() and .ToString()

Friends Always remember -> whenever we are using Convert. with anything, it can handle nulls without throwing errors.