0% found this document useful (0 votes)
44 views58 pages

Csharp Dotnet Adnanreza

This document provides an overview of the .NET framework and C# programming language in 8 sections: 1. Introduction 2. .NET Basics describes the .NET framework, Common Language Runtime, and supported languages 3. C# Basics defines C# as a general purpose language, describes types of applications, and provides a simple example program 4. Code Elements covers basic elements like types, arrays, and variables 5. Organization 6. GUI 7. Demo 8. Conclusion

Uploaded by

Poornima Eg
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
44 views58 pages

Csharp Dotnet Adnanreza

This document provides an overview of the .NET framework and C# programming language in 8 sections: 1. Introduction 2. .NET Basics describes the .NET framework, Common Language Runtime, and supported languages 3. C# Basics defines C# as a general purpose language, describes types of applications, and provides a simple example program 4. Code Elements covers basic elements like types, arrays, and variables 5. Organization 6. GUI 7. Demo 8. Conclusion

Uploaded by

Poornima Eg
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 58

Contents

1. Introduction
2. .NET Basics
3. C# Basics
4. Code Elements
5. Organization
6. GUI
7. Demo
8. Conclusion
1/8:Introduction

Introduction

This presentation is part of the requirements for


this (stated below) class.

Student Name: Adnan Reza


Class: Object Oriented Analysis and Design
Instructor: Ken Anderson
Semester: Fall 2011
School: University of Colorado at Boulder
1/8:Introduction

Introduction

Topic: .NET Framework and C#


Details: This presentation describes some
elementary features of .NET Framework and
C#.
Organization: The index that contains the
chapters of this document is found in the first
slide. On the top-left corner of every slide
show the name of the chapter, sub-chapter
etc. The titles are at top-right
2/8:.NET Basics

.NET Basics

• The .NET Framework is a framework for


developing and implementing software for
personal computer, web etc.
• It was designed and is maintained by
Microsoft Corporation.
• It came out around the year 2000, even
though Microsoft started its development in
early 90s.
• .NET has a rich collection of class library
(called the Base Class Library) to implement
GUI, query, database, web services etc.
2/8:.NET Basics

.NET Basics

• Programs developed with .NET needs a


virtual machine to run on a host. This virtual
machine is called Common Language
Runtime (CLR).
• Since the compiler doesn’t produce native
machine code, and its product is interpreted
by the CLR, there’s much security.
• .NET allows using types defined by one .NET
language to be used by another under the
Common Language Infrastructure (CLI)
specification, for the conforming languages.
2/8:.NET Basics

.NET Basics

• Any language that conforms to the Common


Language Infrastructure (CLI) specification of
the .NET, can run in the .NET run-time.
Followings are some .NET languages.
• Visual Basic
• C#
• C++ (CLI version)
• J# (CLI version of Java)
• A# (CLI version of ADA)
• L# (CLI version of LISP)
• IronRuby (CLI version of RUBY)
2/8:.NET Basics

.NET Basics

Microsoft provides a comprehensive Integrated


Development Environment (IDE) for the
development and testing of software
with .NET.

Some IDEs are as follows


• Visual Studio
• Visual Web Developer
• Visual Basic
• Visual C#
• Visual Basic
3/8:C# Basics
1/3:What is C#

What is C#

C# is a general purpose object oriented


programming language developed by Microsoft
for program development in the .NET
Framework.
It’s supported by .NET’s huge class library that
makes development of modern Graphical User
Interface applications for personal computers
very easy.
It’s a C-like language and many features
resemble those of C++ and Java. For
instance, like Java, it too has automatic
garbage collection.
3/8:C# Basics
1/3:What is C#

What is C#

It came out around the year 2000 for the .NET


platform. Microsoft’s Anders Hejlsberg is the
principal designer of C#.
The “#” comes from the musical
notation meaning C# is higher than
C.
The current version (today’s date is Nov 2,
2011) is 4.0 and was released on April, 2010
More information about C#, tutorial, references,
support and documentation can be found in
the Microsoft Developers Network website.
3/8:C# Basics
2/3:Types of Application

Types of
Application
The product of the C# compiler is called the
“Assembly”. It’s either a “.dll” or a
“.exe” file. Both run on the Common
Language Runtime and are different from
native code that may also end with a
“.exe” extension.

C# has two basic types of application.


• Windows From Application
This is GUI based, runs in a window of some sort
• Console Application
• This application runs in the command prompt
3/8:C# Basics
3/3:Typical and Trivial
A Typical and
TrivialProgram in C#

using System;
namespace t y p i c a l _ t r i v i a l {
class House{
private i n t location;
protected s t r i n g name;
p u b l i c House(){
name = "No Name Ye t ! " ;
}
/ / every class i n h e r i t s ‘object’ t h a t has ToSt r ing()
p u b l i c override s t r i n g To S t r i n g ( ) {
s t r i n g disp = "Name i s " + name + " , location= " +
l o c a t i o n . To S t r i n g ( ) ;
return disp;
}
}
Continues to the next slide …
3/8:C# Basics
3/3:Typical and Trivial
A Typical and
TrivialProgram in C#
… continuing from the previous slide

class Program{
s t a t i c void M a i n ( s t r i n g [ ] a r g s ) {
House h = new House();
for ( i n t i = 0; i < 4; i++){
System.Console.WriteLine( "i
={0}, house says:
{ 1 } " , i , h . To S t r i n g ( ) ) ;
}
System.Console.Read();
}
}
}
4/8:Code Elements
1/12:Types

Types

1. Value type
1. Variable name contains the actual value
2. int, double and other primitive types
3. Structure, Enumeration, etc.
2. Reference Type
1. Variable name contains the reference or
pointer to the actual value in memory
2. Array, derived from class Array
3. Class, Interface, Delegate, String, etc.
4/8:Code Elements
1/12:Types

Type
s
• The value types are derived from
System.ValueType
• All types in C# are derived from
System.Object which is also accessed
by the alias keyword ‘object’
• This type hierarchy is called Common
Type System (CTS)
4/8:Code Elements
1/12:Types

Type
Nullable
s
The value types can’t be assigned a null. To
enable regular primitive value types to take a
null value, C# uses nullable types using ‘?’
with type name. Following example shows
how.
i n t ? a ; a = n u l l ; i n t b ; b = a ?? -­99;‐
/ / the ?? operator picks -­9 ‐9 i f n u l l
System.Console.WriteLine( "this i s n u l l . { 0 } " , b ) ;
a = 23; / / not n u l l
System.Console.WriteLine( "this i s not n u l l . { 0 } " ,
a ?? -­99);

4/8:Code Elements
1/12:Types

Type
Anonymous
s
Variables can be defined without an explicit name
and to encapsulate a set of values. This is
useful for C#’s Language Integrated Query
(which will not be discussed in this
presentation)

var a = 3 ; / / the type i s aut omat ically i n f e r r e d by compiler


var b = new { i d = 21, name = " T i t o " } ;
System.Console.WriteLine("a={0}, b . i d = { 1 } , b.name={2}", a ,
b . i d , b.name);
4/8:Code Elements
2/12:Array

Array
s
Following is an example of declaring and
using a simple array.
i n t [ ] items = new i n t [ ] { 5 , 1 9 , 4 1 , 1 , 9 } ;
foreach ( i n t i i n items)
{
System.Console.WriteLine( "{0}\n",
i-­1);

}
4/8:Code Elements
2/12:Array

Arra
y
The ‘foreach’ ,’in’ keywords are used
to provide read only (recommended)
access to members of an array or any
object implementing the IEnumerable
interface (more about this is discussed
in the section ‘Iterator’).
4/8:Code Elements
3/12:Property

Properties

Properties are members of a class that


allows for easy and simplified getters
and setters implementation of its
private field variables.

The next slide has an example.


4/8:Code Elements
3/12:Property

Properties
class C l i e n t {
p r i v a t e s t r i n g name ;
p u b l i c s t r i n g Name{
get{
r e t u r n name;
}
set{
name=value;
}
}
s t a t i c void
M a i n ( s t r i n g [ ] args)
{
C l i e n t c = new C l i e n t ( ) ;
c.Name = " C e l i a " ;
System.Console.WriteLine(c.Name);
System.Console.ReadLine();
}
4/8:Code Elements
3/12:Property

Properties
Automatically Implemented
C# also has a feature to automatically implement the getters
and setter for you.
Users have direct access to the data members of the class.
Following example does the same thing as the previous
example, but using automatically implemented properties
class C l i e n t 2 {
p u b l i c s t r i n g Name { g e t ; s e t ; }
s t a t i c void M a i n ( s t r i n g [ ] a r g s ) {
Cli ent 2 c = new C l i e n t 2 ( ) ;
c.Name = " Cr u z " ;
System.Console.WriteLine(c.Name);
System.Console.ReadLine();
}
}
4/8:Code Elements
4/12:Indexer

Indexers

Indexers allow a class to be used as an array. For


instance the “[]” operator can be used and
the ‘foreach’, ‘in’ keywords can also be
used on a class that has indexers.
The internal representation of the items in that class
are managed by the developer.
Indexers are defined by the following expression.
public int this[int idx]{
get{/* your code*/}; set{/*code here*/};
}
4/8:Code Elements
5/12:Nested Class

Nested Classes

C# supports nested class which defaults


to private.
class Program
{
p u b l i c class InsiderClass
{
private i n t a;
}
s t a t i c void M a i n ( s t r i n g [ ] args)
{
}
}
4/8:Code Elements
6/12:Inheritance and Interface

Inheritance and
Interface
A class can directly inherit from only one base class and
can implement multiple interfaces.
To override a method defined in the base class, the
keyword ‘override’ is used.
An abstract class can be declared with the keyword
‘abstract’.
A static class is a class that is declared with the
‘static’ keyword. It can not be instantiated and
all members must be static.
4/8:Code Elements
6/12:Inheritance and Interface

Inheritance and
Interface
class BaseClass{
p u b l i c v i r t u a l void show()
{ System.Console.WriteLine("base
class");}
}
i n t e r f a c e I n t e r f a c e 1 { v o i d showMe();}
i n t e r f a c e I n t e r f a c e 2 { v o i d showYou();}
class DerivedAndImplemented:
BaseClass,Interface1,Interface2{ p u b l i c void showMe()
{ System.Console.WriteLine("Me!"); } p u b l i c void showYou() {
System.Console.WriteLine( "You!"); } p u b l i c overri de void
show(){
System.Console.WriteLine("I'm i n derived C l a s s " ) ; }
s t a t i c void M a i n ( s t r i n g [ ] a r g s ) {
DerivedAndImplemented de = new DerivedAndImplemented();
de.show();
System.Console.Read();}
}
4/8:Code Elements
7/12:Class Access & Partial

Class Access and


Partia
l
The class access modifiers are public, private,
protected and internal. ‘internal’ is an
intermediate access level which only allows
access to classes in the same assembly.

The ‘partial’ keyword can be used to split up a


class definition in to multiple location (file
etc). Can be useful when multiple developers
are working on different parts of the same
class.
4/8:Code Elements
8/12:Delegate

Delegates

Delegates are types that describe a method


signature. This is similar to function pointer
in C.

At runtime, different actual methods of same


signature can be assigned to the delegate
enabling encapsulation of implementation.

These are extensively used to implement GUI


and event handling in the .net
framework (will be discussed later).
4/8:Code Elements
8/12:Delegate

Delegates

class Program
{
delegate i n t mydel (i nt a a ) ;
i n t myfunc(int a ) { r e t u r n a* a; }
i n t myfunc2(int a ) { r e t u r n a + a ; }
s t a t i c void M a i n ( s t r i n g [ ] args)
{
Program p=new Program();
mydel d=p.myfunc; System.Console.WriteLine(d(5));
d = p.myfunc2; System.Console.WriteLine(d(5));
System.Console.Read();
}
}
4/8:Code Elements
8/12:Delegate

Delegates
Lambda Expression
In C#, implementors (functions) that are targeted by a
delegate, can be created anonymously, inline and on
the fly by using the lambda operator “=>”.

class Program {
delegate i n t mydel ( int aa, i n t b b ) ;
s t a t i c void M a i n ( s t r i n g [ ] args) {
mydel d = ( a , b) => a + 2 * b ;
/ / i n above l i n e , read a,b go t o a+b*2
t o evaluate
System.Console.WriteLine(d(2,3));
System.Console.Read();
}
}
4/8:Code Elements
9/12:Generic

Generics

Generics are a powerful feature of C#. These


enable defining classes and methods without
specifying a type to use at coding time. A
placeholder for type <T> is used and when
these methods or classes are used, the client
just simply has to plug in the appropriate
type.

Used commonly in lists, maps etc.


4/8:Code Elements
9/12:Generic

Generics

class Genclass<T>{
p u b l i c void genfunc(i nt a , T b )
{ for ( i n t i = 0; i < a; i++)
{
System.Console.WriteLine(b);
}
}
}
class Program{
s t a t i c void M a i n ( s t r i n g [ ] a r g s )
{ Genclass<float> p = new
Genclass< float>(); p . g e n f u n c ( 3 ,
(float)5.7);
System.Console.Read();
}
}
4/8:Code Elements
10/12:Object Initializer

Object Initializer

Using automatically implemented properties


(discussed earlier), object initializers allow for
initializing an object at creation time without
explicit constructors. It can also be used with
anonymous types (discussed earlier).

The following slide has an example.


4/8:Code Elements
10/12:Object Initializer

Object Initializer

class C l i ent 2
{
p u b l i c s t r i n g Name { g e t ; s e t ; }
s t a t i c void M a i n ( s t r i n g [ ] args)
{
C l i ent 2 c = new Cl i e nt 2
{Name="Adalbarto"};
/ / above i s the obj ect i n i t i a l i z e r
System.Console.WriteLine(c.Name);
System.Console.ReadLine();
}
}
4/8:Code Elements
11/12:Iterator

Iterator

Any class implementing the interface


IEnumerable can be invoked by client code
using the ‘foreach’, ‘in’ statements. The
code loops through the elements of the class
and provides access to its elements. This
class defines the GetEnumerator method,
where, individual elements are returned by
the ‘yield’ keyword.
4/8:Code Elements
11/12:Iterator

Iterator
p u b l i c class MyBooks : System.Collections.IEnumerable
{ s t r i n g [ ] books = { "Li near Systems", "Design
Patterns
Explained", "The Now H a b b i t " , "The DeVinci Code" } ;
p u b l i c System.Collections.IEnumerator GetEnumerator()
{ f o r ( i n t i = 0 ; i < books.Length; i + + ) {
y i el d return books[ i];
}
}
}
class Program {
s t a t i c void M a i n ( s t r i n g [ ] args) {
MyBooks b = new MyBooks();
foreach ( s t r i n g s i n b) {
System.Console.Write(s + "
");
}
System.Console.Read();
}
}
4/8:Code Elements
12/12:Sturcture

Structure

Structures are value types that can in some


respect act similar to a class.
It has fields, methods, constructors (no
argument constructors are not allowed) like a
class.
Structures can’t take part in inheritance,
meaning that they can’t inherit from a
type and be a base from which other types
can inherit.
4/8:Code Elements
12/12:Sturcture

Structure

s t r u c t Rectangle{
public i n t length; public i n t width;
p u b l i c Rectangle(int l e n g t h , i n t w i d t h ) {
this.length=length;
this.width=width;
}
p u b l i c i n t getA rea()
{ return
l e n g t h * w i d t h;
}
}
class Program{
s t a t i c void M a i n ( s t r i n g [ ]
args){
Rectangle r=new Rectangle(2,5); System.Console.WriteLine("The
area i s : { 0 } " , r. g e t A r e a ( ) ) ; System.Console.Read();
}
}
5/8:Organization
1/4:Namespaces

Namespace

Names in C# belong to namespaces. They


prevent name collision and offers a
manageable code and libraries.
In the previous examples, ‘System’ is a
namespace. System.Console.Write() is a
method of a class defined in that namespace.
So, the name of the namespace is put in
front to fully qualify a name.
With the statement “using System;”, we can
skip the System part and just write
Console.Write().
5/8:Organization
1/4:Namespaces

Namespace
using System;
namespace space1{
class
MyClass1{
p u b l i c void show()
{ System.Console.WriteLine("MyClass1
");
}
}
}
namespace
space2{ class
Program{
s t a t i c void
Main(stri
ng[] args)
{
space1.MyClass1 c=new space1.MyClass1();
c.show(); Console.Read();
}
5/8:Organization
2/4:Attribute

Attribute
Attributes add metadata to the code entities such
as assembly, class, method, return value etc
about the type.
This metadata describes the type and
it’s members
This metadata is used by the Common Runtime
Environment or can also be used by client
code.
Attributes are declared in square brackets above
the class name, method name etc.
5/8:Organization
2/4:Attribute

Attribute

[Obsolete("Do not use t h i s " ) ]


p u b l i c class Myclass {
p u b l i c void d i s p ( )
{ System.Console.WriteLine(" . .
");
}
}
class Program {
[STAThread] / / means thread safe f o r COM
s t a t i c void M a i n ( s t r i n g [ ] args) {
Myclass mc = new Myclass(); m c . d i s p ( ) ;
System.Console.Read();
}
}
5/8:Organization
3/4:The IDE

The IDE

Microsoft provides Visual Studio for the


development of applications, web services etc
using the .NET Framework with it’s
supported languages.
Microsoft Visual C# Express is a free Microsoft
product that can be used to develop C#
applications for evaluation purposes.
The examples provided in this presentation were
developed using this software.
5/8:Organization
4/4:Other
Misc
Other Miscellaneous
Items
• Use of pointers: C# can be configured to allow pointer
declaration and arithmetic.
• XML comments: It’s possible to follow the XML
comments syntax in code and the compiler will
generate a documentation for you based of those
comments and their location.
• Threading: It’s possible to write multi-threaded
programs using the System.Threading class library.
• C# allows easy integration to unmanaged code (outside
of .NET) such as Win32Api, COM,C++ programs etc to
it’s own.
5/8:Organization
4/4:Other
Misc
Other Miscellaneous
Items
• C# allows editing the file system and the Windows
System Registry.
• Exception: Exceptions can be handled using C#’s
try, throw, catch.
• Collection Classes: These provide support for various
data structures such as list, queue, hash table etc.
• Application Domain: The context in which the assembly
is run is known as the application domain and is usually
determined by the Common Language Runtime (it is
also possible to handle this in code). This isolates
individual programs and provides security.
6/8:GUI
1/3:Introduction

GUI:
Introduction
The .NET framework provides a class library of
various graphical user interface tools such as
frame, text box, buttons etc. that C# can use
to implement a GUI very easily and fast.

The .NET framework also equips these classes


with events and event handlers to perform
action upon interacting with these visual
items by the user.
6/8:GUI
2/3:Visual Items

Visual Items

The following are some of the visual items.


• Form: displays as a window.
• Button: displays a clickable button
• Label: displays a label
• TextBox: displays an area to edit
• RadioButton: displays a selectable button
6/8:GUI
2/3:Visual Items

Visual Items

The containing
window is
called the
“Frame”.
Inside are
some other
GUI
elements,
such as
Button,
TextBox etc
6/8:GUI
3/3:Events

1/4:Intro Events
When anything of interest occurs, it’s called
an event such as a button click, mouse
pointer movement, edit in a textbox etc.
An event is raised by a class. This is called
publishing an event.
It can be arranged that when an event is raised,
a class will be notified to handle this event,
i.e. perform required tasks. This is called
subscribing to the event. This is done via:
• Delegates or
• Anonymous function or
• Lambda expression.
These will be discussed shortly
6/8:GUI
3/3:Events

1/4:Intro Events
The .NET Framework has many built-in events
and delegates for easily subscribing to these
events by various classes.
For example, for Button class, the click event is
called “Click” and the delegate for handler
is called “System.EventHandler”. These are
already defined in the .NET class library.
To tie the event with the handler, the operator
“+=” is used. (Will be discussed shortly)
Then, when the Button object is clicked, that
function will execute.
6/8:GUI
3/3:Events
2/4:With Delegates
With Delegates

The following code segment shows the


subscription of the event Button.Click by the
method button_Click(…) which matches the
System.EventHandler delegate signature.

Class Form1:Form{
p r i v a t e System.Windows.Forms.Button button1;
///...
Void i n i t ( ) {
t h i s . b u t t o n 1 . C l i c k += new System.EventHandler(this.button1_Click);
}
p r i v a t e void button1_Click(object sender, EventArgs e )
{ button1.Text = " c l i c k e d 1 " ;
}
}
6/8:GUI
3/3:Events
3/4:With Lambda
With Lambda
Expression
The following code segment shows the
subscription of the event Button.Click by
inline code which is defined using the lambda
operator.
This program does the same thing as the last.

Class Form1:Form{
p r i v a t e System.Windows.Forms.Button button1;
///...
Void i n i t ( ) {
/ / the arguments a,b are j u s t t o s a t i s f y the delegate s i g n a t u r e .
/ / they do nothing us ef ul i n t h i s simple example. t h i s . b u t t o n 1 . C l i c k
+= ( a , b ) => { t h i s . b u t t o n 1 . Te x t = " c l i c k e d 1 " ; } ;
}
}
6/8:GUI
3/3:Events
4/4:With Anonymous Method
With Anonymous
Methods
An anonymous method is declared with the
keyword “delegate”. It has no name
in source code level.
After the delegate keyword, the arguments need
to be put in parenthesis and the function
body needs to be put in braces.
It is defined in-line exactly where it’s instance
is needed.
Anonymous methods are very useful in event
programming in C# with .NET Framework.
6/8:GUI
3/3:Events
4/4:With Anonymous Method
With Anonymous
Methods
The following example does the same thing as
the previous two examples but uses
anonymous methods to handle that event.

Class Form1:Form{
p r i v a t e System.Windows.Forms.Button button1;
///...
Void i n i t ( ) {
t h i s . b u t t o n 1 . C l i c k += delegate(object oo, System.EventArgs ee) {
t h i s . b u t t o n 1 . Te x t = " c l i c k e d 1 " ;
};
}
}
7/8:Demo

Demo

For this section, please see the attached video


demonstration of the following.
• Basic use of Visual C# IDE
• Showing of how easily GUI can be created
• Creation of a simple web browser
8/8:Conclusion

Conclusion

This presentation described in short some


interesting and important features of
the .NET and C#.
However, the .NET and C# are not without their
trade offs such as the followings.
• The .NET currently doesn’t support optimized
Single Instruction Multiple Data (SIMD) support for
parallel data processing.
• Since it’s run in a virtual machine, the demands
on system resources are higher than native code
of comparable functionality.
8/8:Conclusion

Conclusion

Overall, .NET and C# are very robust, flexible,


object oriented, with large library
support, secure means of software design
and development.

Some of the features that were discussed in this


presentation, are as follows
• Virtual Machine provides security and isolation
• Common Runtime Infrastructure enables any
language to adapt to the run time
0/0:Conclusion

Conclusion

• The Common Language Infrastructure and Common


Type System makes it possible for multiple
languages to use each others defined types and
libraries.
• It has extensive class library for easily developing
GUI and web application.
• C# has many very nice and flexible features such
as partial class/method, nullable type, anonymous
method, indexers, generics, iterators, properties
etc.
The End

You might also like