0

What is c# assemblyinfo.cs

how we can understand c# assembly without knowing assembly language I use visual studio 2013

1st Jul 2017, 2:40 AM
muhamad hardaniyan
muhamad hardaniyan - avatar
4 Respuestas
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
1st Jul 2017, 5:24 AM
Square Weber Interactive
Square Weber Interactive - avatar
0
does this have any relation with internal encapsulatetion?
1st Jul 2017, 5:32 AM
muhamad hardaniyan
muhamad hardaniyan - avatar
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.
1st Jul 2017, 5:38 AM
Square Weber Interactive
Square Weber Interactive - avatar
1st Jul 2017, 9:15 PM
sneeze
sneeze - avatar