Tutorial for Beginners 16 - Constructor and Destructors in C#










1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
namespace MyProject.Examples
{
class Box
{
public double l,b,h;

public double volume()
{
return (this.l * this.b * this.h);
}
public Box(double la,double br,double hi)
{
this.l = la;
this.b = br;
this.h = hi;
}
~Box(){
Console.WriteLine("The Distructor is called");
}
}
class ExampleOne
{
public static void Main()
{
Box box1 = new Box(46,60,20);


Console.WriteLine("Volume of box1 is {0}", box1.volume());

Console.ReadKey();
}
}
}




Comments