Convert.ToInt16(String) simply performs a null check and calls short.Parse(String, IFormatProvider) with CultureInfo.CurrentCulture as the IFormatProvider argument.
Convert.ToInt16(String) will not let you override the culture of the current thread; if you may need to do that I recommend using short.Prase(String, IFormatProvider) directly.
|