Introduction To C Sharp
Introduction To C Sharp
Session Prerequisites
Agenda
Hello World
DEMO 1: Hello World
using System;
class Hello { static void Main() { Console.WriteLine("Hello world"); } }
Agenda
Common Language Specification ASP.NET: Web Services And Web Forms Windows forms
ADO.NET: Data and XML Base Class Library Common Language Runtime
Common Language Specification ASP.NET: Web Services and Web Forms Windows Forms
Language Interoperability Common Classes for all Languages Common Types for all Languages Runtime Controls Compilation to Machine Code Assemblies Application Domains
Simplified development XCOPY deployment Scalability Rich Web clients and safe Web hosting Potentially multi-platform Multiple languages (cross inheritance) Increases productivity Robust and secure execution environment
Managed code
Assembly IL Code
Common Language Specification ASP.NET: Web Services and Web Forms Windows Forms
ASP.NET
Separation of code and presentation Compiled Web Forms Web Services Framework for building rich clients New objects (e.g., DataSets)
Windows Forms
Agenda
Design Goals of C#
The Big Ideas
The first Component Oriented language in the C/C++ family Everything really is an object Next generation robust and durable software Preserving your investment
Design Goals of C#
A Component Oriented Language
C# is the first Component Oriented language in the C/C++ family Component concepts are first class
Properties, methods, events Design-time and run-time attributes Integrated documentation using XML
No external files like header files, IDL, etc. Can be embedded in ASP pages
Design Goals of C#
Everything Really Is an Object
Traditional views
C++, Java: Primitive types are magic and do not interoperate with objects Smalltalk, Lisp: Primitive types are objects, but at great performance cost Deep simplicity throughout system New primitive types: Decimal, SQL Collections, etc., work for all types
Design Goals of C#
Robust and Durable Software
Garbage collection
Exceptions
Type-safety
Versioning
Design Goals of C#
Preserving Your Investment
C++ Heritage
Namespaces, enums, pointers (in unsafe code), unsigned types, etc. No unnecessary sacrifices foreach, using, switch on string decimal type for financial applications ref and out parameters Short learning curve Increased productivity
Design Goals of C#
Interoperability
.NET Languages
XML/SOAP
VB.NET MC++
C#
JScript
...
Agenda
Language Features
Program Structure
Namespaces
Contain types and other namespaces Classes, structs, interfaces, enums, and delegates Constants, fields, methods, properties, indexers, events, operators, constructors, destructors No header files, code written in-line No declaration order dependence
Type declarations
Members
Organization
Language Features
Program Structure
using System; namespace System.Collections { public class Stack { Entry top; public void Push(object data) {
Language Features
Type System
Value types
Directly contain data Cannot be null Contain references to objects May be null
int i = 123; string s = "Hello world";
i s 123 "Hello world"
Reference types
Language Features
Type System
Value types
int i; enum State { Off, On } struct Point { int x, y; } class Foo: Bar, IFoo {...} interface IFoo: IBar {...} string[] a = new string[10]; delegate void Empty();
Reference types
Language Features
Predefined Types
C# predefined types
object, string sbyte, short, int, long byte, ushort, uint, ulong char float, double, decimal bool
Language Features
Classes
Constants, fields, methods, properties, indexers, events, operators, constructors, destructors Static and instance members Nested types
Public, protected, internal, private
Member access
Language Features
Structs
Stored in-line, not heap allocated Assignment copies data, not reference No inheritance Complex, point, rectangle, color int, float, double, etc., are all structs No heap allocation, less GC pressure More efficient use of memory
Benefits
Language Features
Classes and Structs
struct SPoint { int x, y; ... } class CPoint { int x, y; ... } SPoint sp = new SPoint(10, 20); CPoint cp = new CPoint(10, 20);
sp 10 20 cp 10 20 CPoint
Language Features
Interfaces
Multiple inheritance Can contain methods, properties, indexers and events Private interface implementations
interface IDataBound { void Bind(IDataBinder binder); } class EditBox: Control, IDataBound { void IDataBound.Bind(IDataBinder binder) {...} }
Language Features
Enums
Strongly typed
Language Features
Delegates
Language Features
Unified Type System
Everything is an object
All types ultimately inherit from object Any piece of data can be stored, transported, and manipulated with no extra work
object
Stream
Hashtable
int
double
MemoryStream
FileStream
Language Features
Unified Type System
Boxing
Unboxing
Checks type of box, copies value out
int i = 123; object o = i; int j = (int)o;
i o j 123
System.Int32 123
123
Language Features
Unified Type System
Benefits
Eliminates wrapper classes Collection classes work with all types Replaces OLE Automation's Variant
Language Features
Component Development
Properties, methods, events Integrated help and documentation Design-time information Not naming patterns, adapters, etc. Not external files
Language Features
Properties
public class Button: Control { private string caption; public string Caption { get { return caption; } set { caption = value; Repaint(); } } }
Language Features
Indexers
Can be overloaded
public class ListBox: Control { private string[] items; public string this[int index] { get { return items[index]; } set { items[index] = value; Repaint(); } } }
Language Features
Creating and Firing an Event
Language Features
Handling an Event
public class MyForm: Form { Button okButton; public MyForm() { okButton = new Button(...); okButton.Caption = "OK"; okButton.Click += new EventHandler(OkButtonClick); } void OkButtonClick(object sender, EventArgs e) { ShowMessage("You pressed the OK button"); } }
Language Features
DEMO 2: Creating an Event Handler
Language Features
Attributes
Documentation URL for a class Transaction context for a method XML persistence mapping
Traditional solutions
Add keywords or pragmas to language Use external files, e.g., .IDL, .DEF
C# solution: Attributes
Language Features
Attributes
public class OrderProcessor { [WebMethod] public void SubmitOrder(PurchaseOrder order) {...} } [XmlRoot("Order", Namespace="urn:acme.b2b-schema.v1")] public class PurchaseOrder { [XmlElement("shipTo")] public Address ShipTo; [XmlElement("billTo")] public Address BillTo; [XmlElement("comment")] public string Comment; [XmlElement("items")] public Item[] Items; [XmlAttribute("date")] public DateTime OrderDate; }
public class Address {...} public class Item {...}
Language Features
Attributes
Attributes can be
Attached to types and members Examined at run-time using reflection Simply a class that inherits from System.Attribute Arguments checked at compile-time XML, Web Services, security, serialization, component model, COM and P/Invoke interop, code configuration
Completely extensible
Type-safe
Stateless
UDDI
Discovery
Web Service Consumer
http://myservice.com HTML or XML with link to WSDL
Web Service
Web
XML
Programs
Objects
Schema
Services Invocation
XSD
WSDL SOAP
Classes
Methods Calls
Language Features
DEMO 3: Attributes
Language Features
XML Comments
class XmlElement { /// <summary> /// Returns the attribute with the given name and /// namespace</summary> /// <param name="name"> /// The name of the attribute</param> /// <param name="ns"> /// The namespace of the attribute, or null if /// the attribute has no namespace</param> /// <return> /// The attribute value, or null if the attribute /// does not exist</return> /// <seealso cref="GetAttr(string)"/> /// public string GetAttr(string name, string ns) { ... } }
Language Features
DEMO 4: XML Comments
Show how the compiler can auto generate documentation from the source code using XML comments
Language Features
Statements and Expressions
High C++ fidelity if, while, do require bool condition Switch statement
( i<100 ) switch( argwhile ) Goto cant jump into { blocks static short x = { 32767; // Max short static short casey0: = in_label: 32767; Foreach statement int i; case 1: i++; Console.WriteLine(Low); } Checked and try if{( i case )goto break; // 2:error case 2; unchecked foreach word in ( myArray.words if( z(string =i>0 case checked((short)(x Console.WriteLine(Med); )2: while i<100 + ) y)); ) statements { } break; Console.WriteLine(Med); { Console.WriteLine({0}, FileClass (OverflowException void default: Foo() break; file; if { ( j>50 e)) word) Expression } catch { default: Console.WriteLine(High); i == 1; goto // error out_label; statements ifConsole.WriteLine(e.ToString()); }( file Console.WriteLine(High); i = + OpenFile() j; } // ) error // error must do work if} }( (file = out_label: OpenFile()) != NULL )
Language Features
For Each Statement
Iteration of arrays
Language Features
Parameter Arrays
void printf(string fmt, params object[] args) { foreach (object x in args) { ... } }
Language Features
Operator Overloading
Decimal, DateTime, TimeSpan Unit, point, rectangle SQLString, SQLInt16, SQLInt32, SQLInt64, SQLBool, SQLMoney, SQLNumeric, SQLFloat
Language Features
Operator Overloading
public struct DBInt { public static readonly DBInt Null = new DBInt();
private int value; private bool defined; public bool IsNull { get { return !defined; } } public static DBInt operator +(DBInt x, DBInt y) {...} public static implicit operator DBInt(int x) {...} public static explicit operator int(DBInt x) {...} } DBInt x = 123; DBInt y = DBInt.Null; DBInt z = x + y;
Language Features
Versioning
C++ and Java produce fragile base classes Users unable to express versioning intent Methods are not virtual by default C# keywords virtual, override and new provide context Can enable (e.g., explicit override) Can encourage (e.g., smart defaults)
Language Features
Versioning
class Base // version version2 1 class Base // { } public virtual void Foo() { Console.WriteLine("Base.Foo"); } }
1 class Derived: Base // version 2b 2a { virtual void Foo() {{ { new public public override virtual void void Foo() Foo() Console.WriteLine("Derived.Foo"); base.Foo(); } Console.WriteLine("Derived.Foo"); } } }
Language Features
Conditional Compilation
Conditional methods
public class Debug { [Conditional("Debug")] public static void Assert(bool cond, String s) { if (!cond) { throw new AssertionException(s); } } }
Language Features
Unsafe Code
Low-level code without leaving the box Enables unsafe casts, pointer arithmetic Fixed statement
Declarative pinning
Basically inline C
unsafe void Foo() { char* buf = stackalloc char[256]; for (char* p = buf; p < buf + 256; p++) *p = 0; ... }
Language Features
Unsafe Code
class FileStream: Stream { int handle;
public unsafe int Read(byte[] buffer, int index, int count) { int n = 0; fixed (byte* p = buffer) { ReadFile(handle, p + index, count, &n, null); } return n; } [dllimport("kernel32", SetLastError=true)] static extern unsafe bool ReadFile(int hFile, void* lpBuffer, int nBytesToRead, int* nBytesRead, Overlapped* lpOverlapped); }
Language Features
COM Support
Language Features
COM Support
Methods with complicated structures as arguments Large TLB only using a few classes COM object identification Parameter and return value marshalling HRESULT behavior
System.Runtime.Interopservices
Language Features
DEMO 5: COM and C#
Call a COM component from C#
Language Features
DEMO 6: Visual Studio .NET
Windows programming with C#
begun in September 2000 Submitted to ECMA (www.ecma.ch) Active involvement by Intel, HP, IBM, Fujitsu, Plum Hall, Since December 2001
C#
C# Books
C# Customers
More Resources
microsoft.public.dotnet.languages.csharp
Questions?