Hello,
I need to analyze an existing code, i saw that
/// <summary>
/// Base class for extending context. NOTE: <see cref="GroupContext"/> NOT IMPLEMENTED. Allows extending <see cref="IExtension"/> within extension assemblies.
/// </summary>
public abstract class ContextExtension : IContextExtension
{
public LaneGroupExtension(IGroup p) : base(p) { }
}
[Obsolete("Use LaneGroupExtension instead.")]
IContextExtension Internal3{ get; }
Is there an overview on how to create documentation in VisualStudio2019? How the commands are? How to enable, how do they affect?
What is possible?
How can one recognize the software architecture? Re-engineering? I should somehow recognize the class context.
Maybe with VS2019 or other free tools?
Thanks for tips.
Greetings Markus

