Hi guys,
When I try to convert int32 of this "3894111278" string value, It show following error
"Value was either too large or too small for an Int16."
Pls me.
The maximum value for int32 is 2,147,483,647: http://msdn.microsoft.com/en-us/library/system.int32.aspx
So use int64/long instead.
use this
Convert.ToInt64("3894111278")
For clear understanding, have a look over these..