本文介绍了如何将值5872025600存储在变量中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在整数类型的变量上存储值5872025600,该变量可以在c#
i want to store the value 5872025600 on a variable of type integer which data type can i use in c#
推荐答案
Int64
Int64值类型表示整数,其值范围从负9,223,372,036,854,775,808到正9,223,372,036,854,775,807.
希望能有所帮助:)
有关更多查询,请在此处评论!!!
The Int64 value type represents integers with values ranging from negative 9,223,372,036,854,775,808 through positive 9,223,372,036,854,775,807.
Hope this help :)
for further queries comment here!!
这篇关于如何将值5872025600存储在变量中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!