Search Unity

Monodevelop don`t go in to method

Discussion in 'Editor & General Support' started by JPCannon, Aug 22, 2014.

  1. JPCannon

    JPCannon

    Joined:
    Sep 25, 2013
    Posts:
    37
    Hi I have little problem with Monodevelop Debugger. I`m initiate three methods one after one. All three are brakepoints. After this I create brakepoint in that methods. When I start debbuging monodevelop is enter in the first method but not the second. All methods go in the same class, only have another input types. What can do this problem?

    it`s somethink like that
    void TestFunction() {
    TestClass.Test1(int testInt); // go in
    TestClass.Test2(string testString); //not go in and breaking TestFunction
    TestClass.Test3(float testFloat);
    }