Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将一个类中的共享函数调用到另一个类,这是我的代码,
Imports System.Web.UI Public Class functest Public Shared Function callthis(source as object, args as event) 'code goes here End Function End Class
我必须在另一个类中调用“callthis”函数。我该怎么做?
functest.callthis(something, something_else)