.NET
mono.txt
Associated article: Mono & the .NET Framework
Tags: .NET Open Source JVM Languages
Published source code accompanying the article by Miguel de Icaza and Brian Jepson in which they discuss Mono, an open-source implementation of the .NET Development Framework that is compatible with Microsoft's .NET Framework and offers compatible implementations of FCL libraries such as ADO.NET and Windows Forms.
Mono & the .NET Framework
by Miguel de Icaza and Brian Jepson
Example 1:
(a)
struct MyStruct {
int high;
int low;
}
class MyObject {
int high;
int low;
}
(b)
.class private sequential ansi sealed beforefieldinit MyStruct
extends [mscorlib]System.ValueType
{
.field private ...


