Начинающий
- Статус
- Оффлайн
- Регистрация
- 5 Мар 2017
- Сообщения
- 27
- Реакции
- 1
Ругается на недопустимый термин "> и < " в выражении
private void ProcessScan()
{
while (!this.Finded)
{
Thread.Sleep(170);
base.Invoke(new Action(delegate()
{
this.ProcName.Text = "Ожидание процесса △".ToString();
}));
Thread.Sleep(170);
base.Invoke(new Action(delegate()
{
this.ProcName.Text = "Ожидание процесса ▷".ToString();
}));
Thread.Sleep(170);
base.Invoke(new Action(delegate()
{
this.ProcName.Text = "Ожидание процесса ▽".ToString();
}));
Thread.Sleep(170);
base.Invoke(new Action(delegate()
{
this.ProcName.Text = "Ожидание процесса ◁".ToString();
}));
Process[] processes = Process.GetProcesses();
for (int i = 0; i < processes.Length; i++)
{
Process theprocess = processes;
if (theprocess.ProcessName == "java" || theprocess.ProcessName == "javaw")
{
using (IEnumerator enumerator = theprocess.Modules.GetEnumerator())
{
Action <>9__5;
while (enumerator.MoveNext())
{
if (((ProcessModule)enumerator.Current).ModuleName == "lwjgl64.dll")
{
Data.PID = theprocess.Id;
base.Invoke(new Action(delegate()
{
this.ProcName.ForeColor = Color.DarkGreen;
}));
Action method;
if ((method = <>9__5) == null)
{
method = (<>9__5 = delegate()
{
this.ProcName.Text = theprocess.ProcessName + ".exe\nPID:" + Data.PID;
});
}
base.Invoke(method);
Data.WindowName = theprocess.MainWindowTitle;
base.Invoke(new Action(delegate()
{
this.InjectButton.Visible = true;
}));
new Thread(new ThreadStart(this.Okoshko)).Start();
this.Finded = true;
}
}
}
}
}
}
}
private void ProcessScan()
{
while (!this.Finded)
{
Thread.Sleep(170);
base.Invoke(new Action(delegate()
{
this.ProcName.Text = "Ожидание процесса △".ToString();
}));
Thread.Sleep(170);
base.Invoke(new Action(delegate()
{
this.ProcName.Text = "Ожидание процесса ▷".ToString();
}));
Thread.Sleep(170);
base.Invoke(new Action(delegate()
{
this.ProcName.Text = "Ожидание процесса ▽".ToString();
}));
Thread.Sleep(170);
base.Invoke(new Action(delegate()
{
this.ProcName.Text = "Ожидание процесса ◁".ToString();
}));
Process[] processes = Process.GetProcesses();
for (int i = 0; i < processes.Length; i++)
{
Process theprocess = processes;
if (theprocess.ProcessName == "java" || theprocess.ProcessName == "javaw")
{
using (IEnumerator enumerator = theprocess.Modules.GetEnumerator())
{
Action <>9__5;
while (enumerator.MoveNext())
{
if (((ProcessModule)enumerator.Current).ModuleName == "lwjgl64.dll")
{
Data.PID = theprocess.Id;
base.Invoke(new Action(delegate()
{
this.ProcName.ForeColor = Color.DarkGreen;
}));
Action method;
if ((method = <>9__5) == null)
{
method = (<>9__5 = delegate()
{
this.ProcName.Text = theprocess.ProcessName + ".exe\nPID:" + Data.PID;
});
}
base.Invoke(method);
Data.WindowName = theprocess.MainWindowTitle;
base.Invoke(new Action(delegate()
{
this.InjectButton.Visible = true;
}));
new Thread(new ThreadStart(this.Okoshko)).Start();
this.Finded = true;
}
}
}
}
}
}
}