Lecture overview -- Keyboard shortcut: 'u'  Previous page: Arrays -- Keyboard shortcut: 'p'  Next page: Procedures and Functions -- Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Help page about these notes  Alphabetic index  Course home  Page 35 : 43
Object-oriented Programming in C#
Introduction to C#
Arrays

  • Notation

    • VB: a(i)

    • C#: a[i]

  • Range

    • Both from zero to an upper limit

    • VB: The highest index is given in an array variable declaration

    • C#: The length of the array is given in an array variable declaration