Lecture overview -- Keyboard shortcut: 'u'  Previous page: Commands and Control Structures -- Keyboard shortcut: 'p'  Next page: Input and output -- Keyboard shortcut: 'n'  Lecture notes - all slides together  Annotated slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Alphabetic index  Help page about these notes  Course home    Introduction to C# - slide 15 : 43

Functions

All functions in C# are members of classes or structs

C# supports are variety of different function members: methods, properties, events, indexers, operators, and constructors

simple-function-demo.cs
Demonstration of simple functions in C#.
parameters.cs
Demonstration of parameter passing in C#.
overloading.cs
Demonstration of overloaded methods in C#.