I\'m trying to convert double to string in format of exponential notation. for example:
double l_dNum = 3.333; string l_strNum = l_dNum.ToString();
From MSDN examples
string l_strNum = l_dNum.ToString("E");
If you want up to 2 decimals only
string l_strNum = l_dNum.ToString("E2");