473,387 Members | 1,549 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

C# .NET compiler

Does anybody know, if there exists any compiler for C#?
like javac compiler for java

I want to program in UltraEdit and have just compiler to
build a project.

Thanks in advance.

best regards, Sebastijan
Nov 15 '05 #1
8 9500
Sebastijan,

You can use CSC.EXE, which is the command line compiler for C#.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- ni**************@exisconsulting.com

"Sebastijan Vacun" <se**********@email.si> wrote in message
news:49****************************@phx.gbl...
Does anybody know, if there exists any compiler for C#?
like javac compiler for java

I want to program in UltraEdit and have just compiler to
build a project.

Thanks in advance.

best regards, Sebastijan

Nov 15 '05 #2
Nicholas, does Visual Studio actually use CSC.EXE to build its projects, or
is CSC itself just a wrapper for the Framework code building classes?

Chris

"Nicholas Paldino [.NET/C# MVP]" <ni**************@exisconsulting.com> wrote
in message news:OG**************@tk2msftngp13.phx.gbl...
Sebastijan,

You can use CSC.EXE, which is the command line compiler for C#.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- ni**************@exisconsulting.com

"Sebastijan Vacun" <se**********@email.si> wrote in message
news:49****************************@phx.gbl...
Does anybody know, if there exists any compiler for C#?
like javac compiler for java

I want to program in UltraEdit and have just compiler to
build a project.

Thanks in advance.

best regards, Sebastijan


Nov 15 '05 #3
Chris,

I would imagine that it does, but I can't be sure. I think that they
actually host the CLR in a custom manner and then make the calls to the
compiler classes.

This is just a guess though.
--
- Nicholas Paldino [.NET/C# MVP]
- ni**************@exisconsulting.com

"Chris Capel" <ch***@nowhere.com> wrote in message
news:ue*************@TK2MSFTNGP11.phx.gbl...
Nicholas, does Visual Studio actually use CSC.EXE to build its projects, or is CSC itself just a wrapper for the Framework code building classes?

Chris

"Nicholas Paldino [.NET/C# MVP]" <ni**************@exisconsulting.com> wrote in message news:OG**************@tk2msftngp13.phx.gbl...
Sebastijan,

You can use CSC.EXE, which is the command line compiler for C#.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- ni**************@exisconsulting.com

"Sebastijan Vacun" <se**********@email.si> wrote in message
news:49****************************@phx.gbl...
Does anybody know, if there exists any compiler for C#?
like javac compiler for java

I want to program in UltraEdit and have just compiler to
build a project.

Thanks in advance.

best regards, Sebastijan



Nov 15 '05 #4
CSC.EXE is a small command-line driver for the real C# compiler: cscomp.dll.
cscomp.dll is part of the .NET framework SDK (csc.exe would be useless
without it).

The compiler is written in a DLL so that the IDE can call it in-process
through a pseudo COM interface. In fact the intellisense engine in the IDE
shares the parser and parse tree with the compiler, such that when you start
a build, the compiler doesn't have to reparse files you've got open since
they were already parsed for intellisense.

The framework code building classes actually end up calling csc.exe to do
the compilation.

--
--Grant
This posting is provided "AS IS" with no warranties, and confers no rights.
"Chris Capel" <ch***@nowhere.com> wrote in message
news:ue*************@TK2MSFTNGP11.phx.gbl...
Nicholas, does Visual Studio actually use CSC.EXE to build its projects, or is CSC itself just a wrapper for the Framework code building classes?

Chris

"Nicholas Paldino [.NET/C# MVP]" <ni**************@exisconsulting.com> wrote in message news:OG**************@tk2msftngp13.phx.gbl...
Sebastijan,

You can use CSC.EXE, which is the command line compiler for C#.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- ni**************@exisconsulting.com

"Sebastijan Vacun" <se**********@email.si> wrote in message
news:49****************************@phx.gbl...
Does anybody know, if there exists any compiler for C#?
like javac compiler for java

I want to program in UltraEdit and have just compiler to
build a project.

Thanks in advance.

best regards, Sebastijan



Nov 15 '05 #5
Very cool. Thanks for the info, Grant!

"Grant Richins [MS]" <gr*****@online.microsoft.com> wrote in message
news:Oj**************@tk2msftngp13.phx.gbl...
CSC.EXE is a small command-line driver for the real C# compiler: cscomp.dll. cscomp.dll is part of the .NET framework SDK (csc.exe would be useless without it).

The compiler is written in a DLL so that the IDE can call it in-process through a pseudo COM interface. In fact the intellisense engine in the IDE shares the parser and parse tree with the compiler, such that when you start a build, the compiler doesn't have to reparse files you've got open since they were already parsed for intellisense.

The framework code building classes actually end up calling csc.exe to do the compilation.

--
--Grant
This posting is provided "AS IS" with no warranties, and confers no

rights.
Nov 15 '05 #6
It's my understanding that the C# compiler itself (csc.exe and other
required files) is distributed with the .NET SDK which is a free public
release from Microsoft, so that should give you the compiler; you just won't
have the Visual Studio .NET IDE to complement it. Here's a link,

(100 meg!)
http://microsoft.com/downloads/detai...displaylang=en

If you do want an IDE that is more feature rich than Ultraedit there is an
open source offering called SharpDevelop which you can find here,

http://www.icsharpcode.net/OpenSource/SD/Default.aspx

Haven't used it myself so can't comment on it. I believe there is at least
one other open source IDE and of course lots of other freeware tools.
"Sebastijan Vacun" <se**********@email.si> wrote in message
news:49****************************@phx.gbl...
Does anybody know, if there exists any compiler for C#?
like javac compiler for java

I want to program in UltraEdit and have just compiler to
build a project.

Thanks in advance.

best regards, Sebastijan

Nov 15 '05 #7
It's my understanding that the C# compiler itself (csc.exe and other
required files) is distributed with the .NET SDK which is a free public
release from Microsoft, so that should give you the compiler; you just won't
have the Visual Studio .NET IDE to complement it. Here's a link,

(100 meg!)
http://microsoft.com/downloads/detai...displaylang=en

If you do want an IDE that is more feature rich than Ultraedit there is an
open source offering called SharpDevelop which you can find here,

http://www.icsharpcode.net/OpenSource/SD/Default.aspx

Haven't used it myself so can't comment on it. I believe there is at least
one other open source IDE and of course lots of other freeware tools.
"Sebastijan Vacun" <se**********@email.si> wrote in message
news:49****************************@phx.gbl...
Does anybody know, if there exists any compiler for C#?
like javac compiler for java

I want to program in UltraEdit and have just compiler to
build a project.

Thanks in advance.

best regards, Sebastijan

Nov 15 '05 #8
Hi Guys,

Can we have a facility to compile java code from c#.Here i should not use any file concept like storing java code into some file with .java as extension and passing this file to javac as a parameter. I need some thing like in memory compilation of java code from c#.

Please let me know, if u people have any idea about how to compile java code from c#.

Regards,
Hanumanth Reddy.k
Jul 14 '06 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Jeff Epler | last post by:
Hello. Recently, Generator Comprehensions were mentioned again on python-list. I have written an implementation for the compiler module. To try it out, however, you must be able to rebuild...
13
by: Bryan Parkoff | last post by:
You may notice that switch (...) is much faster than function that can gain a big improved performance because it only use JMP instruction however function is required to use CALL, PUSH, and POP...
10
by: Bjorn | last post by:
I'm using interfaces in C++ by declaring classes with only pure virtual methods. If then someone wants to implement the interface they needs to inherit from the class. If the implementing class...
7
by: Tao Wang | last post by:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I saw cuj's conformance roundup, but the result is quite old. I think many people like me want to know newer c++ standard conformance test...
14
by: joshc | last post by:
I'm writing some C to be used in an embedded environment and the code needs to be optimized. I have a question about optimizing compilers in general. I'm using GCC for the workstation and Diab...
16
by: pj | last post by:
(Was originally, probably wrongly, posted to the vc subgroup.) (This doesn't appear to be a c# problem, but a problem with a bug in the Visual Studio c# compiler, but, any help will be welcome...)...
0
by: rollasoc | last post by:
Hi, I seem to be getting a compiler error Internal Compiler Error (0xc0000005 at address 535DB439): likely culprit is 'BIND'. An internal error has occurred in the compiler. To work around...
3
by: Mark Rockman | last post by:
------ Build started: Project: USDAver2, Configuration: Debug .NET ------ Preparing resources... Updating references... Performing main compilation... error CS0583: Internal Compiler Error...
6
by: toton | last post by:
Hi, Anyone have a link to comparative study of different C++ compilers and how much they conform to C++ language standard? Most of the big platforms I know have GCC which well supports C++...
41
by: Miroslaw Makowiecki | last post by:
Where can I download Comeau compiler as a trial version? Thanks in advice.
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.