Hi guys,
I've got a C#.NET background and due to circumstances I'm trying to make a plugin written in VB.NET. I've created a new class project which gives me a DLL. This class implements a C# interface which all works.
My only question is this... In my C# code I've got an implemented DLL (which loads at runtime) with the following declaration before the class...
[Plugin(PluginType.Storage)]
public class XmlPlugin<T> : IStoragePlugin<T>
{
...
...
}
My question is, How do I write [Plugin(PluginType.Storage)] in VB syntax? I've searched the web but without knowing its proper name I've had to reach out to you guys...