Taking a look at the AssemblyInfo.cs
file of a C # project I came across some structures that 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 I have experience I would say are dicionários
. But in C # dicionários
are not so.
What kind of structures are these? Any kind of list?