1
Taking a look at the file AssemblyInfo.cs
of a C# project I came across some structures of which I am not recognizing. These are the lines:
[assembly: AssemblyTitle("")]
[assembly: AssemblyDescription ( "" )]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany ( "" )]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
In other languages that I have experience I would say are dicionários
. But in C# dicionários
are not like that.
What kind of structures are these? Some kind of list?
The comments generated along with the code says they are attributes. But we are talking about the same attribute resource (
decorators
python,annotations
java)?– Matheus Saraiva