1. C# (SHARP) by MicroSoft
------=_NextPart_000_000F_01BFE181.CCEBCEE0
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
From: Wayne Overman=20
To: EUPHORIA at LISTSERV.MUOHIO.EDU=20
I happened to be in the msdn area and noticed C# (sharp) it's almost =
identical
to euphoria and will be utilized for the upcomeing .net platform. Take =
a look, if I'm wrong in assumeing C# (sharp) to be Euphoria easy tell =
me. =20
BTW, I'm close to figureing out how to convert EDS sequence structures =
into multi-dimensional arrays (Bubble's) for use in Windows Assembly =
programming. I can access the DB and retrieve info in nested items but, =
writeing them hasn't been achieved ............... YET.
Thanks for the help euman at bellsouth.net
------=_NextPart_000_000F_01BFE181.CCEBCEE0
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content=3D"text/html; charset=3Diso-8859-1" =
http-equiv=3DContent-Type>
<META content=3D"MSHTML 5.00.2722.2800" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV> </DIV>
<BLOCKQUOTE=20
style=3D"BORDER-LEFT: #000000 2px solid; MARGIN-LEFT: 5px; MARGIN-RIGHT: =
0px; PADDING-LEFT: 5px; PADDING-RIGHT: 0px">
<DIV style=3D"FONT: 10pt arial"> </DIV>
<DIV=20
style=3D"BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: =
black"><B>From:</B>=20
<A href=3D"mailto:euman at BELLSOUTH.NET" =
title=3Deuman at BELLSOUTH.NET>Wayne=20
Overman</A> </DIV>
<DIV style=3D"FONT: 10pt arial"><B>To:</B> <A=20
href=3D"mailto:EUPHORIA at LISTSERV.MUOHIO.EDU"=20
title=3DEUPHORIA at LISTSERV.MUOHIO.EDU>EUPHORIA at LISTSERV.MUOHIO.EDU</A> =
</DIV>
<DIV style=3D"FONT: 10pt arial"> </DIV>
<DIV style=3D"FONT: 10pt arial"> </DIV>
<DIV><FONT size=3D2> <FONT face=3DArial>I happened to be in the =
msdn area and=20
noticed C# (sharp) it's almost identical</FONT></FONT></DIV>
<DIV><FONT face=3DArial size=3D2>to euphoria and will be utilized for =
the=20
upcomeing .net platform. Take a look, if I'm wrong in assumeing C# =
(sharp) to=20
be <U>Euphoria easy</U> tell=20
=
; =20
</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>BTW, I'm close to figureing out =
how to=20
convert EDS sequence structures into multi-dimensional arrays =
(Bubble's) for=20
use in Windows Assembly programming. I can access the DB and retrieve =
info in=20
nested items but, writeing them hasn't been =
achieved ...............=20
YET.</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=3DArial size=3D2>Thanks for the help =
<A=20
=
------=_NextPart_000_000F_01BFE181.CCEBCEE0--
2. Re: C# (SHARP) by MicroSoft
- Posted by clausing at VOYAGER.NET
Jun 29, 2000
On Thu, 29 Jun 2000 04:23:39 -0400, Wayne Overman <euman at BELLSOUTH.NET>
wrote:
>
> From: Wayne Overman
> To: EUPHORIA at LISTSERV.MUOHIO.EDU
>
> I happened to be in the msdn area and noticed C# (sharp) it's almost
identical
> to euphoria and will be utilized for the upcomeing .net platform. Take a
look, if I'm wrong in assumeing C# (sharp) to be Euphoria easy tell me.
The C# language reference manual was written by Anders Hejlsberg and Scott
Wiltamuth. I believe that Hejlsberg wrote Turbo Pascal and Delphi and was
lured away from Borland by Microsoft a while ago. To me C# (aren't they
sticking their necks out with that name?) resembles Delphi with curly
brackets. Hejlsberg has included procedural delegates for handling events,
properties, and a number of other features that appear in Delphi and Object
Pascal.
See http://msdn.microsoft.com/vstudio/nextgen/technology/csharpintro.asp
I don't think that it resembles Euphoria overmuch. It's big with quite a
few primitive data types, control structures, operators, and so on. Where
Euphoria has a single aggregate type, the sequence, C# has a bunch. Despite
what the press release said about portability, C# seems to be tied strongly
into Win32 API. For example, one must use existing class libraries because
there are none for C#.
Regards,
Brian Clausing
3. Re: C# (SHARP) by MicroSoft
Wayne Overman wrote:
> happened to be in the msdn area and noticed
> C# (sharp) it's almost identical to euphoria and
> will be utilized for the upcoming .net platform.
About the only thing "identical to euphoria" is the rough linkage to C/C++.
It's feature list and syntax looks suspiciously close to Java's, although
the documentation is careful never to mention it, instead disingeniously
claiming to be derived from C/C++. Rumor has it that Microsoft was working
on a 'Java killer', since they were unable to dilute/tie Java to the Windows
platform. But C# isn't entirely a Java clone; unique features include:
- limited support for pointers
- use of COM objects
- runs only on the Windows platform
-- David Cuny