• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Verstehe array.GetLower/UpperBound nicht (C#)

Status
Für weitere Antworten geschlossen.

PeterAssmann

Gesperrt
hi,
ich versuche mich an c# und verstehe array.GetLowerBound nicht.
sagen wir ich habe folgende matrix:

Code:
using System;

public class Mine {
  public static void Main() {

  int[,] arrayyy;
  arrayyy = new int[,] {{1, 2, 3},
                               {3, 4, 5}},
So jetzt habe ich also diese Matrix:
1 2 3
3 4 5


richtig? :sad:

arrayyy.GetLowerBound(0)); => gibt 0 aus
arrayyy.GetLowerBound(1)); => gibt 0 aus
arrayyy.GetUpperBound(0)); => gibt 1 aus
arrayyy.GetUpperBound(1)); => gibt 2 aus

Ich verstehe das nicht. Was berechnet denn GetUpper/LowerBound überhaupt?
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben