请指出下面代码的运行结果,
老规矩,不许用编译器笔试题系列之三
using System;
namespace param

  class Class1 
  {
    [STAThread]
    static void Main(string[] args)
    {
      Console.WriteLine(new Class1());
    }
    public override string ToString()
    {
        return string.Format("my name is {0}",this);
    }
  }
}




更多笔试题

相关文章:

  • 2021-06-15
  • 2021-09-20
  • 2021-06-10
  • 2022-01-03
  • 2021-09-04
  • 2021-10-26
  • 2022-02-07
  • 2022-01-02
猜你喜欢
  • 2021-08-05
  • 2021-10-25
  • 2022-03-04
  • 2021-09-04
  • 2021-06-18
  • 2021-06-19
  • 2022-12-23
相关资源
相似解决方案