0
What is c# assemblyinfo.cs
how we can understand c# assembly without knowing assembly language I use visual studio 2013
4 Answers
0
AssemblyInfo.cs contains information about your assembly, like name, description, version, etc. You can find more details about its content reading the comments that are included in it.
If you delete it, your assembly will be compiled with no information, i.e., in the Details tab of the file properties you will see no name, no description, version 0.0.0.0, etc.
The value associated with assembly:Guid is the ID that will identify the assembly if it will be exposed as a COM object. So, if your assembly isn't COM-exposed, you don't need this. It is randomly generate. In any case, normally, you don't need to modify it.
Credits goes to : http://social.msdn.microsoft.com/Forums/en/csharpgeneral/thread/8955449f-71ac-448e-9ee6-5329fceecd3c
0
does this have any relation with internal encapsulatetion?
0
To be completely honest. Iâm not sure ! I was just trying to hopefully direct you to someone who does know. Iâm not familiar with this yet.
0
see my answer in this question
https://www.sololearn.com/Discuss/499064/c-and-assemblyinfo-cs