C# Presentation: Trey Mack James Moore Osa Osar-Emokpae
C# Presentation: Trey Mack James Moore Osa Osar-Emokpae
C# Presentation: Trey Mack James Moore Osa Osar-Emokpae
Trey Mack
James Moore
Osa Osar-Emokpae
Introduction
C#, pronounced “C Sharp,” is one of
the new languages in the .NET
framework being implemented by
Microsoft. All .NET languages
compile to a common byte code
(MSIL) making their integration into
programs written in different
languages easier.
Example:
int n = 3;
string s = n.ToString();
C# Presentation, Spring 2003
Features
OOP
Enumerators
try{ } catch(SomeException){ }
try{ } catch(){ } //catches any kind of exception
try{ } catch(){ } finally{ } //finally is always executed
try{ } finally{ } //finally is always executed
Example:
using system;
public class P1{}