我最近接了一个项目...
我不能在 C# 中调用方法。
在 Visual Studio 中进行了一些设置吗?我正在使用 Visual Studio 2012 Express。
在下面看我的代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Web.Classes;
namespace Web.Business
{
public class TicketDB
{
Random r = new Random();
r.Next(4); // Error
}
}