Click here to Skip to main content
15,890,123 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more: , +
I want to know the effect of optimized code and deploy it to the Windows Mobile device. I'm using VS2005 and the application is using C# code.
Posted

1 solution

Not clear how can it help you except pure academic interest, which is itself very good though. Optimization just works, you can use it or not, but you cannot do anything else about it. For the introduction, start here:
http://en.wikipedia.org/wiki/Code_optimization[^].

You can get detailed answer to particular optimization methods applied to your code, if you compile you solution with optimization and without it, disassemble the code and compare the results. To disassemble your compiled (MSIL) code, use the disassember Ildasm.exe, see http://msdn.microsoft.com/en-us/library/f7dy01k1.aspx[^].

To analyze the results, you would need pretty good knowledge of CIL (Common Intermediate Language), which is not a very trivial thing. Please see http://en.wikipedia.org/wiki/Common_Intermediate_Language[^].

—SA
 
Share this answer
 
v4
Comments
Aka01 20-Jan-12 1:12am    
Thank You..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900