PluginImport.NLParse C# (CSharp) Méthode

NLParse() public méthode

public NLParse ( string input ) : string
input string
Résultat 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;
    }