I am going for copyright my application which requires source code & object code. So can anybody tell me that where are they located & how can i find these codes? I am using Microsoft Visual Studio 2010
-
This depends on your project settings. If you view them, it can tell you where they are. – crashmstr Mar 14 '14 at 19:02
-
@crashmstr in which section do i get it? i mean by what name? – user3289174 Mar 15 '14 at 19:22
3 Answers
Your source code is the code you have written. This is stored wherever you've chosen to store you solution file. I believe the default location is:
C:\Users\{user}\Documents\Visual Studio 2010\Projects\{Project folder}
Your object code is the output from building your application. When you build in Visual Studio, the files are put into a \obj folder in the same location as your source code.
Here is a pretty good basic explanation of the two states of code: http://whatis.techtarget.com/definition/object-code

- 146
- 6
-
ohk got it but if i wish to read these files then can i read them via any text viewer? or for copyright i should copy these into a disk – user3289174 Mar 26 '14 at 18:08
-
You'll be able to read the source code in any text viewer. The object code will not be legible in any way. – James Curtis Mar 26 '14 at 22:10
[Project Directory]\obj\ for the compiled, but not linked code and
[Project Directory]\bin\ for the compiled and linked code.
I imagine that you're looking for the latter in this case.

- 140
- 12
Please take a look to this What are the obj and bin folders (created by Visual Studio) used for?
Also if you click on a project and press the top button "Show all files" you will be able to see and access those files.