What does the assembly keyword mean in the AssemblyInfo.cs. Does it permit to use method inside?

后端 未结 6 937
走了就别回头了
走了就别回头了 2020-12-15 06:16

Saw some code snippet inside AssemblyInfo.cs like

[assembly: someattributename]

What does this code mean?

I even saw some method to

6条回答
  •  醉酒成梦
    2020-12-15 06:38

    Those are assembly attributes, as explained here.

    They make up the version information for your assembly (or: executable) for example.

提交回复
热议问题