我正在使用C#和Windows窗体在Visual Studio 2015中开发基于文本的RPG。我已经为一些基本的数学方法创建了一个类库,我想在我的表单解决方案中引用所述库。
我可以输入using语句,但我的表单解决方案没有问题。当我尝试使用类库中的方法时,VS看不到它。
我添加了类库作为参考。我的类库类是public和static。我还检查并确认两种解决方案都针对相同的.Net框架。
这是我的表单代码。
using System;
using System.Collections.Generic;
using System.Drawing;
using MathOperationsLibrary;
using System.Windows.Forms;
namespace NewRPG
{
public partial class GameScreen : Form
{
public GameScreen()
{
InitializeComponent();
// Red underline under 'Multiply'.
Multiplication.Multiply(2,3);
}
{
}
然后我的班级图书馆。
using System;
namespace MathOperationsLibrary
{
public static class Multiplication
{
public static int Multiply(int x, int y)
{
return x * y;
}
}
}