すべてを展開すべてを収束
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 
-
!
 
 
-
|
|
|
|
|
|
|
!
 //アセンブリマニフェスト。内容は無くても一応大丈夫。
 .assembly x {
 }
 
 //モジュールレベル関数。
 .method static void printhello() {  //モジュールレベルの関数なのでstatic。
 
    .entrypoint // <-- エントリポイントの指定
    
    ldstr    "Hello World!"
    call    void class [mscorlib]System.Console::WriteLine(string)
 
    ret
 }

トップ 編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード 新規 一覧 単語検索 最終更新 リンク元 ヘルプ 最終更新のRSS xenowire
Last-modified: Mon, 27 Jul 2009 03:06:21 JST