System.Windows.Forms.Form.Update()

  • Thread starter Thread starter Piotr
  • Start date Start date
P

Piotr

This method not work.
System.Windows.Forms.Form.Refresh() work good.
Microsoft.Net Framework 1.1.

_
This code not work. Should be work. Terrorism?
....
Method2(Method());
....
public System.Object Method()
{
Text="OK";
}
public System.Object Method2(System.Object method)
{
method();
}
....
 
I think that, should be deleted (1.1)
CS0654
CS1502
CS1503

more stupid errors for good for .Net Framework code:
....
Method2(Method);
....
public delegate System.Object dMethod();
public System.Object Method()
{
Text="OK";
return null;
}
public System.Object Funkcja2(dMethod method)
{
method();
return null;
}
....
 
Back
Top