1

I want to read the Copyright and other attributes from the assemblyInfo.cs file. The problem is, that I can't find anything in the web.

My AssemblyInfo.cs file:

[assembly: AssemblyCopyright("Copyright ©Pascal Hurni  2016")]
[assembly: AssemblyCompany("Crypto AG")]

Now I want to get these Data from an other Window like:

string copyright = Something
Ross Ridge
  • 38,414
  • 7
  • 81
  • 112
BlueRedONe
  • 13
  • 5

1 Answers1

1

Use Assembly.GetCustomAttributes() it's in System.Reflection

Dominik S
  • 176
  • 4
  • 18