Warning: session_start(): open(/home/var/php/6/v/sess_6vkf0uvhd79dna8ulbnoo2v516, O_RDWR) failed: No such file or directory (2) in /home/users/web07/2/1/0219112/phyokin/devlog/controllers/controller.php on line 15

Warning: session_start(): Failed to read session data: files (path: 2;/home/var/php) in /home/users/web07/2/1/0219112/phyokin/devlog/controllers/controller.php on line 15
devlog
MW211 EXIT

devlog
VB.net/デバッグログ
2015年05月11日
【ダイアログに表示】
┌──────────────────┬───────────────────┐
│MsgBox                              │ダイアログに出力                      │
│MessageBox.Show                     │                                      │
└──────────────────┴───────────────────┘
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
【出力ウインドウに表示】
┌──────────────────┬───────────────────┐
│System.Diagnostics.Debug.Write      │出力ウィンドウに改行しないで出力      │
│System.Diagnostics.Trace.Write      │                                      │
├──────────────────┼───────────────────┤
│System.Diagnostics.Debug.WriteLine  │出力ウィンドウに改行して出力          │
│System.Diagnostics.Debug.Print      │                                      │
│System.Diagnostics.Trace.WriteLine  │                                      │
│System.Diagnostics.Trace.Print      │                                      │
├──────────────────┼───────────────────┤
│System.Diagnostics.Debug.WriteIf    │条件付きで                            │
│System.Diagnostics.Trace.WriteIf    │      出力ウィンドウに改行しないで出力│
├──────────────────┼───────────────────┤
│System.Diagnostics.Debug.WriteLineIf│条件付きで出力ウィンドウに改行して出力│
│System.Diagnostics.Trace.WriteLineIf│                                      │
└──────────────────┴───────────────────┘
  ※「.Debug.」はDebug時のみ出力(「.Trace.」はReleaseでも出力)
  ※出力ウインドウは「Ctrl+Alt+O」で表示できる
  ※イミディエイトウィンドウに出力されている場合は
    「ツール>オプション>デバッグ>全般」の
    「□出力ウィンドウの文字をすべてイミディエイトウィンドウにリダイレクトする」
    のチェックを外す
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
分類:VB.net