[Mono-list] decimal bug
kojo
kojoadams@hotmail.com
Wed, 2 Oct 2002 16:08:25 -0400
This is a multi-part message in MIME format.
------=_NextPart_000_002E_01C26A2D.EFE351C0
Content-Type: multipart/alternative;
boundary="----=_NextPart_001_002F_01C26A2D.EFE351C0"
------=_NextPart_001_002F_01C26A2D.EFE351C0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Hi all,
I don't know if this is already filed in bugzilla. The following =
fails when compiled with mcs.
------=_NextPart_001_002F_01C26A2D.EFE351C0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2800.1106" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>Hi all,</FONT></DIV>
<DIV><FONT face=3DArial size=3D2> I don't know if this is =
already filed=20
in bugzilla. The following fails when compiled with =
mcs.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV></BODY></HTML>
------=_NextPart_001_002F_01C26A2D.EFE351C0--
------=_NextPart_000_002E_01C26A2D.EFE351C0
Content-Type: application/octet-stream;
name="bug.cs"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename="bug.cs"
public class Run=0A=
{=0A=
public static void Main()=0A=
{=0A=
Book myBooks =3D new Book();=0A=
Book myBooks5 =3D new Book();=0A=
Book myBooks3 =3D new Book();=0A=
Book myBooks2 =3D new Book();=0A=
myBooks2.price =3D (decimal) 9.95;=0A=
myBooks.it();=0A=
=0A=
}=0A=
}=0A=
=0A=
public class Book=0A=
{=0A=
public decimal price;=0A=
public void it(){}=0A=
}=0A=
=0A=
------=_NextPart_000_002E_01C26A2D.EFE351C0--