-1

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

Icaro Martins
  • 307
  • 12
  • 22

3 Answers3

1

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

James Curtis
  • 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
0

[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.

Ficertyn
  • 140
  • 12
0

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.

Community
  • 1
  • 1
jrodrigv
  • 31
  • 4