PluginImport.NLParse C# (CSharp) Method

NLParse() public method

public NLParse ( string input ) : string
input string
return string
    public string NLParse(string input)
    {
        string[] args = new string[]{input};
        string result = Marshal.PtrToStringAuto(PythonCall (Application.dataPath + "/Externals/python/", "change_to_forms", "parse_sent", args, args.Length));
        Debug.Log (result);

        return result;
    }