本文介绍了如何在c#中替换它(scanf(“%d",& cond);)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在c#中替换它(scanf(%d",&cond);)

how to replace this in c# ( scanf("%d",&cond);)

推荐答案

string input = Console.ReadLine();
int cond;
Int32.TryParse(input, out cond);


int cond;
object objIn=Console.In.ReadLine();
if(!Int32.TryParse(objIn,out cond))
{
 // If not a proper value
}


这篇关于如何在c#中替换它(scanf(“%d",& cond);)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 16:19