PC Review


Reply
Thread Tools Rate Thread

is C# suitable...

 
 
pvp
Guest
Posts: n/a
 
      14th Nov 2003
.... for implementing another, new, computer language that
needs to have a concurrent runtime. IOW, I am creating a
new language that needs runtime that supports multi-
tasking. The language will need to schedule existing
applications such as MS Office.

Thanks.

 
Reply With Quote
 
 
 
 
Alvin Bruney
Guest
Posts: n/a
 
      14th Nov 2003
C# fits the bill but you will need the CLR to run underneath that platform
as C# cannot work without it, so in essence you would really be creating
another .NET language. C# has support for concurrency and all the fun stuff
you will need. Performance will be an issue though as your new language will
have to call into C# and then call into the CLR. You can side - step these
issues if you build a .NET compliant language.

regards

--


-----------
Got TidBits?
Get it here: www.networkip.net/tidbits
"pvp" <(E-Mail Removed)> wrote in message
news:0b1501c3aac6$e90e4960$(E-Mail Removed)...
> ... for implementing another, new, computer language that
> needs to have a concurrent runtime. IOW, I am creating a
> new language that needs runtime that supports multi-
> tasking. The language will need to schedule existing
> applications such as MS Office.
>
> Thanks.
>



 
Reply With Quote
 
Konrad Neitzel
Guest
Posts: n/a
 
      14th Nov 2003
Hi "pvp"

"pvp" <(E-Mail Removed)> schrieb im Newsbeitrag
news:0b1501c3aac6$e90e4960$(E-Mail Removed)...

> ... for implementing another, new, computer language that
> needs to have a concurrent runtime. IOW, I am creating a
> new language that needs runtime that supports multi-
> tasking. The language will need to schedule existing
> applications such as MS Office.


Of course you can implement a new Language in C#. You could also use C#
and compile everything in your application. In the moment, I don't see,
what you really want.

Maybe these links are helpfull for you:

A Simple Compiler for the Common Language Runtime":
http://www.codeproject.com/csharp/compiler.asp

A C# Compiler without using csc.exe:
http://www.codeproject.com/csharp/cscompiler.asp

With kind regards,

Konrad


 
Reply With Quote
 
Eric Newton
Guest
Posts: n/a
 
      14th Nov 2003
....Just nit piking:

quote: "Performance will be an issue though as your new language will have
to call into C# and then call into the CLR"

Not if the language has been compiled to MSIL... the C# code would only be
run once to parse and generate the MSIL code into a .NET assembly.

--
Eric Newton
C#/ASP Application Developer
(E-Mail Removed) [remove the first "CC."]

"Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com> wrote in
message news:(E-Mail Removed)...
> C# fits the bill but you will need the CLR to run underneath that platform
> as C# cannot work without it, so in essence you would really be creating
> another .NET language. C# has support for concurrency and all the fun

stuff
> you will need. Performance will be an issue though as your new language

will
> have to call into C# and then call into the CLR. You can side - step these
> issues if you build a .NET compliant language.
>
> regards
>
> --
>
>
> -----------
> Got TidBits?
> Get it here: www.networkip.net/tidbits
> "pvp" <(E-Mail Removed)> wrote in message
> news:0b1501c3aac6$e90e4960$(E-Mail Removed)...
> > ... for implementing another, new, computer language that
> > needs to have a concurrent runtime. IOW, I am creating a
> > new language that needs runtime that supports multi-
> > tasking. The language will need to schedule existing
> > applications such as MS Office.
> >
> > Thanks.
> >

>
>



 
Reply With Quote
 
Eric Gunnerson [MS]
Guest
Posts: n/a
 
      14th Nov 2003
Yes, you can do it.

The jscript.net compiler is written in C#, for example.

--
Eric Gunnerson

Visit the C# product team at http://www.csharp.net
Eric's blog is at http://blogs.gotdotnet.com/ericgu/

This posting is provided "AS IS" with no warranties, and confers no rights.
"pvp" <(E-Mail Removed)> wrote in message
news:0b1501c3aac6$e90e4960$(E-Mail Removed)...
> ... for implementing another, new, computer language that
> needs to have a concurrent runtime. IOW, I am creating a
> new language that needs runtime that supports multi-
> tasking. The language will need to schedule existing
> applications such as MS Office.
>
> Thanks.
>



 
Reply With Quote
 
Dan Smith
Guest
Posts: n/a
 
      14th Nov 2003
You can use the J# ZIP classes from C#. See
http://msdn.microsoft.com/msdnmag/is...n/default.aspx

Dan

"Alvin Bruney" <.> wrote in message
news:(E-Mail Removed)...
> Will we be getting compression classes in the next release? Since XP and
> later will have "compressd folders" will these be wrapped for managed use?
>
>
>
> "Eric Gunnerson [MS]" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Yes, you can do it.
> >
> > The jscript.net compiler is written in C#, for example.
> >
> > --
> > Eric Gunnerson
> >
> > Visit the C# product team at http://www.csharp.net
> > Eric's blog is at http://blogs.gotdotnet.com/ericgu/
> >
> > This posting is provided "AS IS" with no warranties, and confers no

> rights.
> > "pvp" <(E-Mail Removed)> wrote in message
> > news:0b1501c3aac6$e90e4960$(E-Mail Removed)...
> > > ... for implementing another, new, computer language that
> > > needs to have a concurrent runtime. IOW, I am creating a
> > > new language that needs runtime that supports multi-
> > > tasking. The language will need to schedule existing
> > > applications such as MS Office.
> > >
> > > Thanks.
> > >

> >
> >

>
>
>



 
Reply With Quote
 
Michael A. Covington
Guest
Posts: n/a
 
      15th Nov 2003

"pvp" <(E-Mail Removed)> wrote in message
news:0b1501c3aac6$e90e4960$(E-Mail Removed)...
> ... for implementing another, new, computer language that
> needs to have a concurrent runtime. IOW, I am creating a
> new language that needs runtime that supports multi-
> tasking. The language will need to schedule existing
> applications such as MS Office.


Eminently. It can even use System.Reflection.Emit to compile new code and
execute it!


 
Reply With Quote
 
Alvin Bruney
Guest
Posts: n/a
 
      15th Nov 2003
could you please stop spoofing my email account. it's getting a little tired
don't you think. if you want credibility, build it up on your own not at
the expense of others

--


-----------
Got TidBits?
Get it here: www.networkip.net/tidbits
"Alvin Bruney" <.> wrote in message
news:(E-Mail Removed)...
> Will we be getting compression classes in the next release? Since XP and
> later will have "compressd folders" will these be wrapped for managed use?
>
>
>
> "Eric Gunnerson [MS]" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Yes, you can do it.
> >
> > The jscript.net compiler is written in C#, for example.
> >
> > --
> > Eric Gunnerson
> >
> > Visit the C# product team at http://www.csharp.net
> > Eric's blog is at http://blogs.gotdotnet.com/ericgu/
> >
> > This posting is provided "AS IS" with no warranties, and confers no

> rights.
> > "pvp" <(E-Mail Removed)> wrote in message
> > news:0b1501c3aac6$e90e4960$(E-Mail Removed)...
> > > ... for implementing another, new, computer language that
> > > needs to have a concurrent runtime. IOW, I am creating a
> > > new language that needs runtime that supports multi-
> > > tasking. The language will need to schedule existing
> > > applications such as MS Office.
> > >
> > > Thanks.
> > >

> >
> >

>
>
>



 
Reply With Quote
 
Alvin Bruney
Guest
Posts: n/a
 
      15th Nov 2003
Ignore this guy he is spoofing my email account. For credibility purposes I
suppose.

--


-----------
Got TidBits?
Get it here: www.networkip.net/tidbits
"Alvin Bruney" <.> wrote in message
news:(E-Mail Removed)...
> Will we be getting compression classes in the next release? Since XP and
> later will have "compressd folders" will these be wrapped for managed use?
>
>
>
> "Eric Gunnerson [MS]" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Yes, you can do it.
> >
> > The jscript.net compiler is written in C#, for example.
> >
> > --
> > Eric Gunnerson
> >
> > Visit the C# product team at http://www.csharp.net
> > Eric's blog is at http://blogs.gotdotnet.com/ericgu/
> >
> > This posting is provided "AS IS" with no warranties, and confers no

> rights.
> > "pvp" <(E-Mail Removed)> wrote in message
> > news:0b1501c3aac6$e90e4960$(E-Mail Removed)...
> > > ... for implementing another, new, computer language that
> > > needs to have a concurrent runtime. IOW, I am creating a
> > > new language that needs runtime that supports multi-
> > > tasking. The language will need to schedule existing
> > > applications such as MS Office.
> > >
> > > Thanks.
> > >

> >
> >

>
>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
wcf suitable ? Eps Microsoft C# .NET 0 26th May 2008 11:36 AM
XP - not suitable ? fongish Windows XP General 9 28th Apr 2008 05:46 AM
BCM - is it suitable =?Utf-8?B?c3RyZWJvcjQ0?= Microsoft Outlook BCM 4 12th Nov 2007 03:43 PM
Which OS is most suitable for ASP.NET 2.0 development? Ethan V Microsoft ASP .NET 5 27th Jun 2006 04:23 AM
Re: Is C# suitable for this? =?Utf-8?B?Sm9lIFRob21wc29u?= Microsoft Dot NET Compact Framework 0 8th Sep 2005 04:07 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:31 PM.