If I have a positional record like this:
public record Version(int Major, int Minor);
it seems that I can only provide a <summary> documentation, like this:
/// <summary>
/// Version record
/// </summary>
public record Version(int Major, int Minor);
Is it possible to document the Major and Minor properties (possibly constructor arguments as well) while keeping the short record syntax?
