public class Foo
{
/// <summary>
/// Initializes a new instance of the <see cref="Foo"/> class.
/// </summary>
/// <param name="bar">The lorem ipsum.</param>
public Foo(int bar)
{
this.Bar= bar;
}
/// <summary>
/// Gets the lorem ipsum.
/// </summary>
public int Bar { get; }
}
There are also code gen opportunities when one is missing.
There are also code gen opportunities when one is missing.