M
mp
vb.net 2008 express
new project(copy of old one i'm converting to other use)
I created a class MCSUtil.vb to hold general utility functions that could be
of use in multiple projects
'wanted to move some inline functions that occurred in previous class into a
utility class that could provide code reuse.
I put these lines in another class who wanted to use the utility class
Private m_Util As MCSUtil
'm_Util = new mcsutil
'm_Util.init(true)
if i uncomment either or both of the above two lines i get Declaration
expected
what does that mean?
I thought
Private m_Util As MCSUtil
was a declaration?
thanks mark
new project(copy of old one i'm converting to other use)
I created a class MCSUtil.vb to hold general utility functions that could be
of use in multiple projects
'wanted to move some inline functions that occurred in previous class into a
utility class that could provide code reuse.
I put these lines in another class who wanted to use the utility class
Private m_Util As MCSUtil
'm_Util = new mcsutil
'm_Util.init(true)
if i uncomment either or both of the above two lines i get Declaration
expected
what does that mean?
I thought
Private m_Util As MCSUtil
was a declaration?
thanks mark