Software Engineeering LAB CS 381-L
C# Codes Executed in Lab
Addition of 2 numbers using Function
Using Loop in C#
Using Nested Loop in C#
Ms Hirra Mustafa (Sharif College of Engineering and Technology) 1
Software Engineeering LAB CS 381-L
Exception handling in C#
Events in C#
using System;
namespace SampleApp {
public delegate string MyDel(string str);
class EventProgram {
event MyDel MyEvent;
public EventProgram() {
[Link] += new MyDel([Link]);
}
public string WelcomeUser(string username) {
return "Welcome " + username;
}
static void Main(string[] args) {
EventProgram obj1 = new EventProgram();
string result = [Link]("Tutorials Point");
[Link](result);
}
}
}
Ms Hirra Mustafa (Sharif College of Engineering and Technology) 2
Software Engineeering LAB CS 381-L
Implementing the Operator Overloading in C#
using System;
namespace OperatorOvlApplication {
class Box {
private double length; // Length of a box
private double breadth; // Breadth of a box
private double height; // Height of a box
public double getVolume() {
return length * breadth * height;
}
public void setLength( double len ) {
length = len;
}
public void setBreadth( double bre ) {
breadth = bre;
}
public void setHeight( double hei ) {
height = hei;
}
// Overload + operator to add two Box objects.
public static Box operator+ (Box b, Box c) {
Box box = new Box();
[Link] = [Link] + [Link];
[Link] = [Link] + [Link];
[Link] = [Link] + [Link];
return box;
}
}
class Tester {
static void Main(string[] args) {
Box Box1 = new Box(); // Declare Box1 of type Box
Box Box2 = new Box(); // Declare Box2 of type Box
Box Box3 = new Box(); // Declare Box3 of type Box
double volume = 0.0; // Store the volume of a box here
// box 1 specification
[Link](6.0);
[Link](7.0);
[Link](5.0);
// box 2 specification
[Link](12.0);
[Link](13.0);
[Link](10.0);
// volume of box 1
volume = [Link]();
[Link]("Volume of Box1 : {0}", volume);
// volume of box 2
volume = [Link]();
[Link]("Volume of Box2 : {0}", volume);
Ms Hirra Mustafa (Sharif College of Engineering and Technology) 3
Software Engineeering LAB CS 381-L
// Add two object as follows:
Box3 = Box1 + Box2;
// volume of box 3
volume = [Link]();
[Link]("Volume of Box3 : {0}", volume);
[Link]();
}
}
}
Dynamic Polymorphism in C#
using System;
namespace PolymorphismApplication {
abstract class Shape {
public abstract int area();
}
class Rectangle: Shape {
private int length;
private int width;
public Rectangle( int a = 0, int b = 0) {
length = a;
width = b;
}
public override int area () {
[Link]("Rectangle class area :");
return (width * length);
}
}
class RectangleTester {
static void Main(string[] args) {
Rectangle r = new Rectangle(10, 7);
double a = [Link]();
[Link]("Area: {0}",a);
[Link]();
}
}
}
Ms Hirra Mustafa (Sharif College of Engineering and Technology) 4
Software Engineeering LAB CS 381-L
Use of Indexers (Array) in C#
using System;
namespace IndexerApplication {
class IndexedNames {
private string[] namelist = new string[size];
static public int size = 10;
public IndexedNames() {
for (int i = 0; i < size; i++)
namelist[i] = "N. A.";
}
public string this[int index] {
get {
string tmp;
if( index >= 0 && index <= size-1 ) {
tmp = namelist[index];
} else {
tmp = "";
}
return ( tmp );
}
set {
if( index >= 0 && index <= size-1 ) {
namelist[index] = value;
}
}
}
static void Main(string[] args) {
IndexedNames names = new IndexedNames();
names[0] = Junaid";
names[1] = "Ayesha";
names[2] = "Muneeb";
names[3] = "Taimoor";
names[4] = "Nurmeen";
names[5] = "Ali";
names[6] = "Noor";
for ( int i = 0; i < [Link]; i++ ) {
[Link](names[i]);
}
[Link]();
}
}
}
Ms Hirra Mustafa (Sharif College of Engineering and Technology) 5