You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
How does one convert the following c# code to delphi I know it is multicast .How ever i don't know the delphi syntax Venkatesh ************************************************* protected Catalog m_catalog; // Build the catalog! Spider cat = new Spider(); cat.SpiderProgressEvent += new SpiderProgressEventHandler (OnProgressEvent); m_catalog = cat.BuildCatalog (new Uri(Preferences.StartPage)); **************************************************
Robert Giesecke
unread,
Jul 27, 2008, 3:22:54 PM7/27/08
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
VT Venkatesh wrote: > How does one convert the following c# code to delphi > I know it is multicast .How ever i don't know the delphi syntax > Venkatesh
They are using the set syntax for this in D.Net Include(someDelegate, anotherDelegate);
This is basically doing this: someDelegate := YourDelegateType(Delegate.Combine(someDelegate, anotherDelegate));