我想用我的流程图作为一个目录,它也按时间顺序模糊地表示平行事件的进展及其彼此之间的关系。
我知道使用 Markdown 创建这些图表。通过为“B”节点添加“点击”行,当我将鼠标悬停在节点上时,我可以看到我的光标发生变化,就好像它是一个链接一样,但任何选择它的尝试都不起作用。
graph LR;
A-->B;
click B "http://www.github.com"
Run Code Online (Sandbox Code Playgroud)
这是 Gitlab 本身的限制吗?
我对我正在寻找的术语不太确定但是......
//here's a new list:
List<string> AList = new List<string>();
Run Code Online (Sandbox Code Playgroud)
现在我如何从"AList"中获得"字符串"的类型?
/*I cant just ".GetType()" a value within the list since there aren't any values
and "AList.GetType()" would give me the type of "List<string>".*/
Run Code Online (Sandbox Code Playgroud)