質問

How can the method below be converted to C#?

private int GetTotalNumberLines()
{
    // be safe about the array
    int size = 0;
    if (mLines == null) {
       size = -1;
    } 
    else {
       size = Information.UBound(mLines);
    }
    return size;
}

正しい解決策はありません

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top