Code:
Dim resourceManager As ResourceManager = _
new ResourceManager("MyCompany.MyProject.SomeResources", _
CType(<Iâm not certain what goes here>) _
)
This is a really, really bad idea though, to name a variable with exactly the same name as the class name. Much beter is a set of letters to indicate the class, and a name to indicate the use:
Code:
Dim rmgrCompanyData As ResourceManager = . . .
or even just using contraction:
Code:
Dim RsrcMgr As ResourceManager = . . .