你的代码文件名字 应该是aa.cs?

解决方案 »

  1.   

    你的代码文件名字 应该是aa.cs?
      

  2.   

    对 
    是aa.cs 我写了两个 刚才粘错误提示的时候粘错了
    可是问题不在这里啊。
      

  3.   

    代码应该没问题吧 错误提示是说根本就没找到文件。
    using System;
    class hello {
    static void Main() {
    Console.WriteLine("HELLO WORLD");
    }
    }
      

  4.   

    to  jeky123(jeky) 
    正确的应该是放在哪里啊?
      

  5.   

    我的在:
    D:\Documents and Settings\Administrator你看你的csc命令前面,是哪个目录,就放到哪个目录不过你也可以用绝对路径呀。如:csc c:\hello.cs对了,为什么要用csc?为什么不用开发环境做?
      

  6.   

    TO  winxieddd
    我刚接触这个东西,我只装了一个SDK1.1,你说用开发环境做,需要装什么东西啊?
      

  7.   

    你 安装Visual Studio 2003
    开发环境进行 测试!~
    如果没有
    你用记事本的话
    using System;
    class hello {
    static void Main() {
    Console.WriteLine("HELLO WORLD");
    }
    }
    另存为hello.cs
    然后在你的文件目录下执行
    csc hello.cs
      

  8.   

    初学c#应在.net2003中多看看"帮助"里面的"快速开始"很有用!
      

  9.   

    楼上说的那个东西在这里:http://chs.gotdotnet.com/quickstart/aspplus/
    其实MSDN也是连上这个网址的。