OpenFileOnSpecificLineAndColumn() public static method

public static OpenFileOnSpecificLineAndColumn ( string filePath, int line, int column ) : void
filePath string
line int
column int
return void
    void StubCodeAndSave(string assetPath, string allScript, string stubCode)
    {
        var ioPath    = Application.dataPath.Replace("Assets", "") + assetPath;
        var lastIndex = allScript.LastIndexOf("}");
        var text      = allScript.Substring(0, lastIndex);

        var sb = new StringBuilder();

        sb.Append(text);
        sb.AppendLine("");
        var line = sb.ToString().Split('\n').Length;

        sb.AppendLine(stubCode);
        sb.AppendLine("}");

        var script = sb.ToString();

        SaveWindowScript(assetPath, script);
        InternalUtility.OpenFileOnSpecificLineAndColumn(ioPath, line, 0);
    }