我知道那里有诸如 vb 到 c# 转换器应用程序之类的东西,但我正在寻找的是有点不同。我需要一个转换器来帮助我将这个“for”循环转换成一个“while”循环。这是我为“整数工厂”设计的代码(您可以在底部看到“for”循环 - 这是需要转换的内容)。我还有其他一些循环,这就是为什么我需要一个应用程序(最好是所见即所得)。谢谢!
int IntegerBuilderFactory(string stringtobeconvertedbythefactory)
{
string strtmp = stringtobeconvertedbythefactory;
int customvariabletocontrolthethrottling;
if (strtmp.Length > 0)
{
customvariabletocontrolthethrottling = 1;
}
else
{
customvariabletocontrolthethrottling = 0;
}
for (int integersforconversiontostrings = 0; integersforconversiontostrings < customvariabletocontrolthethrottling; integersforconversiontostrings++)
{
return int.Parse(strtmp);
}
try
{
return 0;
}
catch (Exception ex)
{
// Add logging later, once the "try" is working correctly
return 0;
}
}