How to reduce size?
-
I have used String array and integer for one console application. But size of the executable is 16kb. can u help me in this view.
-
I have used String array and integer for one console application. But size of the executable is 16kb. can u help me in this view.
-
Can you explain more the relation of size of executable file with the use of String Array and integer in your applicattion? :confused: Mazy "Improvisation is the touchstone of wit." - Molière
I am using a string array which is having 13 constants and i am comparing with other 13 constants. When i built that executable file its size is 16kb but i feel 16kb is very costly. Please explain me Regards,
-
I am using a string array which is having 13 constants and i am comparing with other 13 constants. When i built that executable file its size is 16kb but i feel 16kb is very costly. Please explain me Regards,
GetOn&GetGoing wrote: When i built that executable file its size is 16kb but i feel 16kb is very costly. Is it? :confused: Then perhaps you should consider using something other than the .NET Framework. I have done some experiments and the smallest application I could build was 16kb. Also consider that when your application is running it will be loading .NET Framework DLLs. The 16kb size of this executable is a drop in the ocean compared with the size of the Framework. --Colin Mackay--
EuroCPian Spring 2004 Get Together[^] "You can have everything in life you want if you will just help enough other people get what they want." --Zig Ziglar
-
GetOn&GetGoing wrote: When i built that executable file its size is 16kb but i feel 16kb is very costly. Is it? :confused: Then perhaps you should consider using something other than the .NET Framework. I have done some experiments and the smallest application I could build was 16kb. Also consider that when your application is running it will be loading .NET Framework DLLs. The 16kb size of this executable is a drop in the ocean compared with the size of the Framework. --Colin Mackay--
EuroCPian Spring 2004 Get Together[^] "You can have everything in life you want if you will just help enough other people get what they want." --Zig Ziglar
Yah, they are really small in size. The only time I got smaller than this, somtimes in VC6 which I used some win32 applicationns with some specific compile attribute which lead to very small size like 3 to 5 Kb. :) Mazy "Improvisation is the touchstone of wit." - Molière
-
I have used String array and integer for one console application. But size of the executable is 16kb. can u help me in this view.