Question

Comment convertir la méthode ci-dessous en C #?

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

Pas de solution correcte

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top