Imports System Imports Agility.Server.Scripting.ScriptAssembly
Namespace MyNamespace
Public Class Class1
<StartMethodAttribute()> Public Sub Method1(ByVal sp As ScriptParameters)
'
' TODO: Add start method code here
'
Dim FirstName
Dim LastName
FirstName = sp.InputVariables("FirstName")
LastName = sp.InputVariables("LastName")
sp.OutputVariables("Fullname") = FirstName + LastName
End Sub
End Class
End Namespace