Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
class lode1
public var1 as string
public sub teller(byval var2 as string)
return var2 += var1
end sub
end class
dim l1 as new lode1
l1.var1 = 1
textbox1.text = l1.teller(2)
class lode1
public shared var1 as string
public shared sub teller(byval var2 as string)
return var2 += var1
end sub
end class