Jump to content

Compound data type: Difference between revisions

Verbose version
(Verbose version)
Line 83:
{
public int x, y;
public Point(int) { x, int= 0; y) {= 0; }
public Point(int x0) { this.x = xx0; y = 0; }
public Point(int this.yx0, int y0) { x = x0; y = y0; }
}
 
// Verbose version
.class public sequential ansi sealed beforefieldinit Point
extends [mscorlib]System.ValueType
{
public int x, y;
public Point() { x = 0; y = 0; }
public Point(int x0) { x = x0; y = 0; }
public Point(int x0, int y0) { x = x0; y = y0; }
}
 
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.