首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

俄罗斯方块游戏 using用法,该如何解决

2012-05-16 
俄罗斯方块游戏 using用法using Systemusing System.Collections.Genericusing System.ComponentModelu

俄罗斯方块游戏 using用法
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using youxi;
using System.IO;
using System.Diagnostics;


namespace youxiApp
{
  public partial class Form1 : Form
  {
  private youxiControl youxiControl = new youxiControi();
  private youxiNext youxiNext = new youxiNext();
  private youxiScore youxiScore = new youxiScore();
这个为什么说youxiControl youxiNext youxiScore 缺少using指令?我上面已经有usingyouxi 了呀

[解决办法]
youxi中定义的youxiControl youxiNext youxiScore必须是public等类型,编译的时候,必须能正确链接到youxi所属的dll,手动的话csc /r:youxi.dll ...
描述不是很清楚,只能这样回了
[解决办法]
找不到youxi(例如没有引用dll文件)或者youxi命名空间下没有yousiControl。
[解决办法]
右键解析一下 如果没有 要添加dll
[解决办法]
肯定是youxiControl这个类没设访问符,默认访问符不能跨程序集

热点排行