vb.net - Which is more efficient Cstr(value) or value.ToString() - Stack Overflow
From here (couldn't say it any better): CStr is a keyword, whereas ToString is a function (method). CStr is compiled inline and it creates code depending on the type of the passed object. It's mainly there for people being used to it from previous VB vers...