A quick question

Dumbo

Member
Joined
Nov 1, 2005
Messages
6
Programming Experience
1-3
HI

Does anyone knows what does the given below line of code means and from where does it gets the value:

this.compiledAssembly

Thanks for your time.
cheers.
 
It is the property of the compilerresults class. As msdn says: Represents the results of compilation that are returned from a compiler.
It can display information about the compiler's exit code and the generated assembly or temporary files information.

Like: Me.CompiledAssembly.FullName gives the assembly name.
 
Back
Top