compilation process in dot net
-
Hi How to skip the process of the creation of assembly files in dot net? is there a way that we can directly create the .exe files so that the compilation process can become faster. Regards
sAqIb "Our scientific power has outrun our spiritual power. We have guided missiles and misguided men." Dr. Martin Luther King Jr.
-
Hi How to skip the process of the creation of assembly files in dot net? is there a way that we can directly create the .exe files so that the compilation process can become faster. Regards
sAqIb "Our scientific power has outrun our spiritual power. We have guided missiles and misguided men." Dr. Martin Luther King Jr.
saqib82 wrote:
How to skip the process of the creation of assembly files in dot net?
Assembly will get created when you compile your project... CLR at run time converts IL present in the Assembly into native CPU instructions at run time So do you want to ask to create native code directly instead of IL ? < Added> Assmebly contains Metadata, Manifest,other resources, IL ,PE header,CLR header which are required to run your application
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... "
-
saqib82 wrote:
How to skip the process of the creation of assembly files in dot net?
Assembly will get created when you compile your project... CLR at run time converts IL present in the Assembly into native CPU instructions at run time So do you want to ask to create native code directly instead of IL ? < Added> Assmebly contains Metadata, Manifest,other resources, IL ,PE header,CLR header which are required to run your application
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... "
-
yes, i want to create the native code directly instead of IL. Is there any way?
sAqIb "Our scientific power has outrun our spiritual power. We have guided missiles and misguided men." Dr. Martin Luther King Jr.
saqib82 wrote:
yes, i want to create the native code directly instead of IL. Is there any w
:wtf::confused: I don't know how to create directly native cpu code from C# One way that i know is give up C# and start to write core languages like C
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... "
-
saqib82 wrote:
yes, i want to create the native code directly instead of IL. Is there any w
:wtf::confused: I don't know how to create directly native cpu code from C# One way that i know is give up C# and start to write core languages like C
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... "
:) you are right. But i have heard that there is some way to do that. May be there is some tool or add-in to do this. Regards
sAqIb "Our scientific power has outrun our spiritual power. We have guided missiles and misguided men." Dr. Martin Luther King Jr.
-
:) you are right. But i have heard that there is some way to do that. May be there is some tool or add-in to do this. Regards
sAqIb "Our scientific power has outrun our spiritual power. We have guided missiles and misguided men." Dr. Martin Luther King Jr.
One thing that you can do is Publish your web site that will precompiled code but not directly native CPU code.
saqib82 wrote:
But i have heard that there is some way to do that.
If it is then Micrsoft would not be Operating system specific it would run on other than Windows * ...
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... "
-
Hi How to skip the process of the creation of assembly files in dot net? is there a way that we can directly create the .exe files so that the compilation process can become faster. Regards
sAqIb "Our scientific power has outrun our spiritual power. We have guided missiles and misguided men." Dr. Martin Luther King Jr.