Kimono.KRun.SetAutoDelete C# (CSharp) 메소드

SetAutoDelete() 공개 메소드

Enables or disabled auto deletion. Auto deletion causes the KRun instance to delete itself when it finished its task. If you allocate the KRun object on the stack you must disable auto deletion. By default auto deletion is on. name="b" true to enable auto deletion, false to disable
public SetAutoDelete ( bool b ) : void
b bool
리턴 void
        public void SetAutoDelete(bool b)
        {
            interceptor.Invoke("setAutoDelete$", "setAutoDelete(bool)", typeof(void), typeof(bool), b);
        }