投稿者 魔界の仮面弁士  (社会人) 投稿日時 2021/2/14 21:33:54
> 具体的にどうすればいいですか?

こういうことです。

Private Function 再帰(node As TreeNode) As TreeNode
    Return If(node?.Parent Is Nothing, node, 再帰(node.Parent))
End Function