Unity Game Engine has a very useful feature in its console, where you can click on any line in the output, and it will take you to the line of source code that produced it.
For example
Debug.Log("test"); (line 20 in Test.cs)
will output
test
double clicking on test, will bring you back to line 20 in Test.cs in the IDE.
I was wondering, is there some way to do this in normal C# development? I'm using Rider IDE, but I suspect this is some kind of hyperlink rather than something IDE dependent. Although perhaps that's not accurate.
