Hello!

I'm pluggin' through some code in my AJAX professional book, which uses
this AjaxPro.dll assembly, and need to know how to convert the
following C code to VB:

[Ajax.AjaxMethond()]
public int Add(int firstNumber, int secondNumber)
{
return firstNumber + secondNumber
}

So far, I've got:
 Public Function Add(ByVal firstNumber As Integer, ByVal secondNumber
As Integer) As Integer
        Return firstNumber + secondNumber
End Function

where/how do I implement [Ajax.AjaxMethond()] in this VB function?

Thanks!


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Ajax.NET Professional" group.

To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]

For more options, visit this group at http://groups.google.com/group/ajaxpro

The latest downloads of Ajax.NET Professional can be found at 
http://www.ajaxpro.info
-~----------~----~----~----~------~----~------~--~---

Reply via email to