这段程序会输出什么?
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++;
}