【发布时间】:2011-03-25 06:03:06
【问题描述】:
下面的方法如何转成C#?
private int GetTotalNumberLines()
{
// be safe about the array
int size = 0;
if (mLines == null) {
size = -1;
}
else {
size = Information.UBound(mLines);
}
return size;
}
【问题讨论】:
-
作为新用户总是很高兴访问:stackoverflow.com/faq
标签: vb.net-to-c#