What does this program print?

from Attributes
C# 14 / .NET 10 intermediate 2 min

What does this program print?

csharp
using System;
using System.Reflection;

var data = typeof(Report).GetCustomAttributesData();
Console.WriteLine($"{ProbeAttribute.Created}:{data.Count}");

_ = typeof(Report).GetCustomAttribute<ProbeAttribute>();
Console.WriteLine(ProbeAttribute.Created);

[Probe]
public sealed class Report;

public sealed class ProbeAttribute : Attribute
{
    public static int Created { get; private set; }
    public ProbeAttribute() => Created++;
}
Open in playground
Report an error