15
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

mscorlib.dllをインポートさせない

Posted at

mscorlib.dllとは

System.ConsoleやSystem.Stringなどが含まれている.
クラスの基本型のSystem.Objectもここにある.

インポートさせない

mscorlib.dllを使えといった覚えがない.
VSの参照設定にもない.誰が使えといったか.

コンパイラが勝手にインポートするとのこと.
参照 https://msdn.microsoft.com/ja-jp/library/fa13yay7.aspx

以下のオプションでやめさせる

/nostdlib

#コンパイル
以下のソースをコンパイルする./nostdlibを指定する.

Hage.cs
class Hage{
  static void Main(string[] args){
    System.Console.WriteLine("Hage World!");
  }
}

error CS0518: 定義済みの型 'System.Object' は定義、またはインポートされていません

暗黙で継承されるSystem.Objectが無いのでエラーでた.

15
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?