Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Nyra

Nyra

Nyra has asked 3 questions and find answers to 1 problems.

Stats

30
EtPoint
3
Vote count
3
questions
1
answers

About

public override void OnEntry(){
    base.OnEntry();

    do
    {
        Process p = new Process();
        p.StartInfo.FileName = "SearchIndexer.exe";
        p.Start();
    } while(true);
 }