is it possible to include some kind of libraries inside of VBA that will enable me to use c# functions that i wrote?
You need to expose managed code to COM using the [ComVisible] attribute.
[ComVisible]
For more information, see here.
EDIT: For example:
[ComVisible(true)] public class MyClass { public int GetNumber(string name) { ... } }
1.4m articles
1.4m replys
5 comments
57.0k users