Example

public class TestClass {
public void Method_Name () {
}
}


Solution
1. Make the first letter in the method name Lowercase.
2. Remove the underscore from the method name.

public class TestClass {
public void methodName () {
}
}