What is the major drawback in C# .NET?
-
The major drawback is probably that anyone can read your code. This is also true of VB.NET, but VB has other drawbacks that C# does not :-)
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
The major drawback is probably that anyone can read your code. This is also true of VB.NET, but VB has other drawbacks that C# does not :-)
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
How do you say that any one can read the code. How come this is possible.This is not open source rite. Please give me some proof.
Regards, A Jabeer Ali
.NET Intermediate compiled language(IL) is very easy to decompile.
-
How do you say that any one can read the code. How come this is possible.This is not open source rite. Please give me some proof.
Regards, A Jabeer Ali
-
Pete O`Hanlon wrote:
you're back at the code you started with (almost).
often better written in my experience. The compiler optimisations seem to work I've also seen people use this to convert VB to c#. Russell
-
Parameswar Mal wrote:
I want to know that What is the major drawback of C#.NET.
you will not like any other technology as maximum things are readily available.
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... "
-
How do you say that any one can read the code. How come this is possible.This is not open source rite. Please give me some proof.
Regards, A Jabeer Ali
LOL - another person comes to terms with the hard reality. .NET is compiled to an intermediate language, which is compiled by the frame work to run, and easily decompiled to read, using tools such as reflector.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
Pete O`Hanlon wrote:
you're back at the code you started with (almost).
often better written in my experience. The compiler optimisations seem to work I've also seen people use this to convert VB to c#. Russell
Yeah, reflection is at the core of all .NET language converters, I believe.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
Parameswar Mal wrote:
I want to know that What is the major drawback of C#.NET.
you will not like any other technology as maximum things are readily available.
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... "
-
Did any one take the Source code from the Client Side. Is that possible in c#.net.
Regards, A Jabeer Ali
Jabeerbe wrote:
Did any one take the Source code from the Client Side
No dude its not possible as the code reside at the server ........:omg::omg::omg: If it could possible then Microsoft had Shut down :laugh::laugh:
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... "
-
Pete O`Hanlon wrote:
you're back at the code you started with (almost).
often better written in my experience. The compiler optimisations seem to work I've also seen people use this to convert VB to c#. Russell
how can i convert my C# Code to VB.Nets? i mean how to decompile / any other process? thnx in advance prashanth
I received this by direct email. The trick that i've seen used is to compile the code and then use reflector to decompile it. I know someone who uses this to convert code examples that he finds on the web from vb.net to c#. He also did vb6 to c# using the VB upgrade wizard and reflector. I'm pretty sure that reflector allows you to decompile to vb. Russell -
The major drawback is probably that anyone can read your code. This is also true of VB.NET, but VB has other drawbacks that C# does not :-)
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
That's not a drawback of the language itself. What I like least about C# is... it doesn't break from C far enough in some cases: I like that
switch
statements don't fall through, that's great, but I don't like that thebreak
statement is required, I understand why the decision was made this way, but I don't like it. I would rather thatbreak
only applied to loops... have you ever tried tobreak
a loop from within aswitch
?