i have a Code from another Person and i need a specific Part of it. The part I need, is in the start()
Function. The Code with the start Function is this:
using System;
namespace base.First
{
public interface IFirst
{
void start();
}
}
If I right click the Function and "Go to definition" -or clicking something else in the "right click menu" I only come to the same Class that i showed you above.
Does anyone know a way, how i can see the Code from the start()
Function? I tried following:
- Go to definition
- I also tried it with ReSharper
The language is C#.