79619170

Date: 2025-05-13 07:45:40
Score: 0.5
Natty:
Report link

Improved answer posted by Grant Winney, please upvote his answer.

To avoid warnings and make the <para> work as desired, use this in derived class:

/// <summary>Time To Live.
/// <para>Also stops ticking after living time is longer than TTL.</para>
/// </summary>
new public float TTL
{
    get { return base.TTL; }
    set { base.TTL = value; }
}
Reasons:
  • Blacklisted phrase (0.5): upvote
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Matteo TeoMan Mangano