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

后端 未结 6 918
走了就别回头了
走了就别回头了 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 07:01

    It means this an attribute on the assembly itself and not on a specific class, method, property etc.

提交回复
热议问题