about summary refs log tree commit diff
path: root/pkgs/test/dotnet/structured-attrs/src/Application.cs
blob: 3bc548105c2b453e0b5caca08d3ced3c382c97a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System;
using System.Reflection;

Console.Write(
    (
        (AssemblyCopyrightAttribute)Assembly
            .GetExecutingAssembly()
            .GetCustomAttributes(typeof(AssemblyCopyrightAttribute), true)[0]
    ).Copyright
);