Difference between revisions of "Yurttas/PL/OOL/CS/F/02/05/00/index page"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "<div class="divone"><span class="h4"> Dr. Salih Yurttas - [mailto:yurttas@zcubes.com yurttas@zcubes.com ] </span></div><div class="divone"><span class="h3"> programming lang...")
 
(No difference)

Latest revision as of 07:23, 7 November 2013

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