3359堆栈覆盖.com/questions/5192862/how-to-convert-long-to-in-net
you can ‘ tstorea 15数字智能工具647,147,483,647。
整数存储最多可达15位。
You could useTryParse () togetthelong-valuefromyoutuserinput :
可以使用TryParse ()将输入的string字符串转换为长整数。
stringam=amount textbox.text.tostring (; 龙格; int64.tryparse(am,out l ); itwillreturnfalseifthetextcan ‘ tbeconvertedtolong,so it’s pretty safe to use。
如果转换失败,将返回false,因此使用此方法非常有条件。
Otherwise,converting alongtointis a easy as
或者,将长整数转换为整数也很简单。 直接在前面加上(int )
intI=(int ) yourLongValue; if you ‘ rehappywithdiscardingmsbsandtakinglsbs。