本文介绍了有没有把数以百万计成C#代码可读的方式吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是一个有点难以阅读:

  INT X =亿; 



有没有简单的方法来写:

  INT X =亿; 



这样的规模是显而易见的?




解决方案
解决方案

No. It is not possible to put commas in numeric.

Comma and other similar things are for presentation purpose. If you are worried about code readability then either declare constants with name like MILLION, TEN_MILLIONS etc or simply name the variable to represent value.

这篇关于有没有把数以百万计成C#代码可读的方式吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 02:19