我有非常简单的 C# 代码,如下所示:
public class Provider
{
public IEnumerable<string> GetBundle()
{
return new List<string>
{
"app/content/css/stylesheet1.css",
"app/content/css/stylesheet2.css"
};
}
}
我需要从 Node.js 访问这些类。什么工具对此有用?