Based on this https://www.microsoft.com/en-us/download/details.aspx?id=7029 ,I would like to get all different types within a heading with its content
arated with its types(Paraphraph, Coding, Table ...)
Just print it out: Debug.writeline
For example:
Heading: 1.6.3 Type parameters
# Paraphraph 1:
"A class definition may specify a set of ..."(all of its content).
# Code 1:
"public class Pair<TFirst,TSecond>
{
public TFirst First;
public TSecond Second;
}
"
# Paraphraph 2:
"A class type that is declared to take type parameters is called a generic class type. Struct, interface and delegate types can also b..."
And so on ...
How ?