- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
private button1_Click (sender : object, e : System.EventArgs) : void
{
PatchOptions.noerror = if (this.textBox1.Text=="")
{
MessageBox.Show("Wind header caption could not be empty");
false
}
else
if (this.textBox2.Text=="")
{
MessageBox.Show("BaseAddress could not be empty");
false
}
else
if (this.textBox3.Text=="")
{
MessageBox.Show("NewValue could not be empty");
false
}
else
{
try
{
PatchOptions.WinHeader=this.textBox1.Text.ToString();
PatchOptions.BaseAddress=Int32.Parse( this.textBox2.Text.ToString() );
PatchOptions.NewValue=BitConverter.GetBytes(Int32.Parse(this.textBox3.Text.ToString()));
this.Close();
true
}
catch
{
e is Exception => MessageBox.Show("You entered incorrect values.");
false
}
}
}
guest 04.02.2010 14:30 # 0
в шурупе есть такой синтаксис ?
Nemerle 04.02.2010 14:45 # 0
guest 04.02.2010 16:39 # 0
diablo 04.02.2010 17:35 # 0
guest 04.02.2010 18:26 # 0
xXx_totalwar 04.02.2010 18:43 # 0
просто товарисч Nemerle запостил код на Nemerle
так-то Ж)
GovnocoderJr 05.02.2010 08:03 # 0
если си-шарп результат попытки превратить с++ в basic, то nemerle это попытка сделать из с++ delphi. в обоих случаях вышло вот такое говно
Nemerle 05.02.2010 08:22 # 0
GovnocoderJr 04.02.2010 18:26 # 0
Nemerle 05.02.2010 08:22 # 0