Yurttas/PL/OOL/CS/F/02/05/00/index page

Dr. Salih Yurttas - yurttas@zcubes.com
programming languages - design principles, implementation constructs
c#

  1. c# language fundamentals
    1. methods - main method
      • A00.cs | A10.cs
        [ main method that prints out its command-line args ]
      • A01.cs
        [ main method that invokes a static method from the same class ]
        [ main method is defined before invoked method ]
      • A02.cs
        [ main method that invokes a static method from the same class ]
        [ main method is defined after invoked method ]
      • A03.cs
        [ main method that invokes a static method from another class ]
        [ main method uses class name as object to invoke the static method ]
      • A.cs
        [ a class with a static method ]
      • A04.cs
        [ main method that invokes a non-static method from another class ]
        [ main method uses an object to invoke the non-static method ]
      • B.cs
        [ a class with a non-static method ]

c#, .net framework, and visual studio.net << 2 >> classes, objects | 4 | 5 | 6 | 7 | 8 | 9 |10 |11 |12 |13