System.Console.xml 33.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
<?xml version="1.0" encoding="utf-8"?>
<doc>
  <assembly>
    <name>System.Console</name>
  </assembly>
  <members>
    <member name="T:System.Console">
      <summary>コンソール アプリケーションの標準入力ストリーム、標準出力ストリーム、および標準エラー ストリームを表します。このクラスは継承できません。この種類の .NET Framework ソース コードを参照して、次を参照してください。、 Reference Sourceです。</summary>
      <filterpriority>1</filterpriority>
    </member>
    <member name="P:System.Console.BackgroundColor">
      <summary>コンソールの背景色を取得または設定します。</summary>
      <returns>コンソールの背景色、つまり、各文字の背後に表示される色を指定する値。既定値は黒です。</returns>
      <exception cref="T:System.ArgumentException">設定操作で指定された色は、<see cref="T:System.ConsoleColor" /> の有効なメンバーではありません。</exception>
      <exception cref="T:System.Security.SecurityException">ユーザーに、この操作を実行するためのアクセス許可がありません。</exception>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" />
      </PermissionSet>
    </member>
    <member name="E:System.Console.CancelKeyPress">
      <summary>
        <see cref="F:System.ConsoleModifiers.Control" /> の修飾子キー (Ctrl) と <see cref="F:System.ConsoleKey.C" /> コンソール キー (c) または中断キーが同時にプッシュされた場合 (Ctrl + C または Ctrl + Break) に発生します。</summary>
      <filterpriority>1</filterpriority>
    </member>
    <member name="P:System.Console.Error">
      <summary>標準エラー出力ストリームを取得します。</summary>
      <returns>標準エラー出力ストリームを表す <see cref="T:System.IO.TextWriter" /> オブジェクト。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="P:System.Console.ForegroundColor">
      <summary>コンソールの前景色を取得または設定します。</summary>
      <returns>コンソールの前景色、つまり、表示される各文字の色を指定する <see cref="T:System.ConsoleColor" />。既定値は灰色です。</returns>
      <exception cref="T:System.ArgumentException">設定操作で指定された色は、<see cref="T:System.ConsoleColor" /> の有効なメンバーではありません。</exception>
      <exception cref="T:System.Security.SecurityException">ユーザーに、この操作を実行するためのアクセス許可がありません。</exception>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" />
      </PermissionSet>
    </member>
    <member name="P:System.Console.In">
      <summary>標準入力ストリームを取得します。</summary>
      <returns>標準入力ストリームを表す <see cref="T:System.IO.TextReader" /> オブジェクト。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.OpenStandardError">
      <summary>標準エラー ストリームを取得します。</summary>
      <returns>標準エラー ストリーム。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.OpenStandardInput">
      <summary>標準入力ストリームを取得します。</summary>
      <returns>標準入力ストリーム。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.OpenStandardOutput">
      <summary>標準出力ストリームを取得します。</summary>
      <returns>標準出力ストリーム。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="P:System.Console.Out">
      <summary>標準出力ストリームを取得します。</summary>
      <returns>標準出力ストリームを表す <see cref="T:System.IO.TextWriter" /> オブジェクト。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Read">
      <summary>標準入力ストリームから次の文字を読み取ります。</summary>
      <returns>入力ストリームの次の文字。または次の文字がない場合は -1。</returns>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.ReadLine">
      <summary>標準入力ストリームから次の 1 行分の文字を読み取ります。</summary>
      <returns>入力ストリームの次の行。または次の行がない場合は null。</returns>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <exception cref="T:System.OutOfMemoryException">返される文字列用のバッファーを割り当てるためにはメモリが不足しています。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">次の行の文字数が、<see cref="F:System.Int32.MaxValue" /> を超えています。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.ResetColor">
      <summary>コンソールの前景色および背景色を既定値に設定します。</summary>
      <exception cref="T:System.Security.SecurityException">ユーザーに、この操作を実行するためのアクセス許可がありません。</exception>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" />
      </PermissionSet>
    </member>
    <member name="M:System.Console.SetError(System.IO.TextWriter)">
      <summary>指定した <see cref="T:System.IO.TextWriter" /> オブジェクトに <see cref="P:System.Console.Error" /> プロパティを設定します。</summary>
      <param name="newError">新しい標準エラー出力であるストリーム。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="newError" /> は null です。</exception>
      <exception cref="T:System.Security.SecurityException">呼び出し元に、必要なアクセス許可がありません。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
      </PermissionSet>
    </member>
    <member name="M:System.Console.SetIn(System.IO.TextReader)">
      <summary>指定した <see cref="T:System.IO.TextReader" /> オブジェクトに <see cref="P:System.Console.In" /> プロパティを設定します。</summary>
      <param name="newIn">新しい標準入力であるストリーム。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="newIn" /> は null です。</exception>
      <exception cref="T:System.Security.SecurityException">呼び出し元に、必要なアクセス許可がありません。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
      </PermissionSet>
    </member>
    <member name="M:System.Console.SetOut(System.IO.TextWriter)">
      <summary>指定した <see cref="T:System.IO.TextWriter" /> オブジェクトに <see cref="P:System.Console.Out" /> プロパティを設定します。</summary>
      <param name="newOut">新しい標準出力であるストリーム。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="newOut" /> は null です。</exception>
      <exception cref="T:System.Security.SecurityException">呼び出し元に、必要なアクセス許可がありません。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
      </PermissionSet>
    </member>
    <member name="M:System.Console.Write(System.Boolean)">
      <summary>指定した Boolean 値のテキスト形式を標準出力ストリームに書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Write(System.Char)">
      <summary>指定した Unicode 文字値を標準出力ストリームに書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Write(System.Char[])">
      <summary>指定した Unicode 文字配列を標準出力ストリームに書き込みます。</summary>
      <param name="buffer">Unicode 文字配列。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Write(System.Char[],System.Int32,System.Int32)">
      <summary>指定した Unicode 文字の部分配列を標準出力ストリームに書き込みます。</summary>
      <param name="buffer">Unicode 文字の配列。</param>
      <param name="index">
        <paramref name="buffer" /> 内の開始位置。</param>
      <param name="count">書き込む文字数。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="buffer" /> は null です。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> または <paramref name="count" /> が 0 未満です。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="index" /><paramref name="count" /> を足した数が、この <paramref name="buffer" /> 内にない位置を示しています。</exception>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Write(System.Decimal)">
      <summary>指定した <see cref="T:System.Decimal" /> 値のテキスト形式を標準出力ストリームに書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Write(System.Double)">
      <summary>指定した倍精度浮動小数点値のテキスト形式を標準出力ストリームに書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Write(System.Int32)">
      <summary>指定した 32 ビット符号付き整数値のテキスト形式を標準出力ストリームに書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Write(System.Int64)">
      <summary>指定した 64 ビット符号付き整数値のテキスト形式を標準出力ストリームに書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Write(System.Object)">
      <summary>指定したオブジェクトのテキスト形式を標準出力ストリームに書き込みます。</summary>
      <param name="value">書き込む値または null。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Write(System.Single)">
      <summary>指定した単精度浮動小数点値のテキスト形式を標準出力ストリームに書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Write(System.String)">
      <summary>指定した文字列値を標準出力ストリームに書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Write(System.String,System.Object)">
      <summary>指定した書式情報を使用して、指定したオブジェクトのテキスト表現を標準出力ストリームに書き込みます。</summary>
      <param name="format">複合書式指定文字列 (「解説」を参照)。</param>
      <param name="arg0">
        <paramref name="format" /> を使用して書き込むオブジェクト。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="format" /> は null です。</exception>
      <exception cref="T:System.FormatException">
        <paramref name="format" /> の書式指定が無効です。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Write(System.String,System.Object,System.Object)">
      <summary>指定した書式情報を使用して、指定したオブジェクトのテキスト表現を標準出力ストリームに書き込みます。</summary>
      <param name="format">複合書式指定文字列 (「解説」を参照)。</param>
      <param name="arg0">
        <paramref name="format" /> を使用して書き込む最初のオブジェクト。</param>
      <param name="arg1">
        <paramref name="format" /> を使用して書き込む 2 番目のオブジェクト。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="format" /> は null です。</exception>
      <exception cref="T:System.FormatException">
        <paramref name="format" /> の書式指定が無効です。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Write(System.String,System.Object,System.Object,System.Object)">
      <summary>指定した書式情報を使用して、指定したオブジェクトのテキスト表現を標準出力ストリームに書き込みます。</summary>
      <param name="format">複合書式指定文字列 (「解説」を参照)。</param>
      <param name="arg0">
        <paramref name="format" /> を使用して書き込む最初のオブジェクト。</param>
      <param name="arg1">
        <paramref name="format" /> を使用して書き込む 2 番目のオブジェクト。</param>
      <param name="arg2">
        <paramref name="format" /> を使用して書き込む 3 番目のオブジェクト。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="format" /> は null です。</exception>
      <exception cref="T:System.FormatException">
        <paramref name="format" /> の書式指定が無効です。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Write(System.String,System.Object[])">
      <summary>指定した書式情報を使用して、指定したオブジェクト配列のテキスト表現を標準出力ストリームに書き込みます。</summary>
      <param name="format">複合書式指定文字列 (「解説」を参照)。</param>
      <param name="arg">
        <paramref name="format" /> を使用して書き込むオブジェクトの配列。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="format" /> または <paramref name="arg" /> が null です。</exception>
      <exception cref="T:System.FormatException">
        <paramref name="format" /> の書式指定が無効です。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Write(System.UInt32)">
      <summary>指定した 32 ビット符号なし整数値のテキスト形式を標準出力ストリームに書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.Write(System.UInt64)">
      <summary>指定した 64 ビット符号なし整数値のテキスト形式を標準出力ストリームに書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine">
      <summary>現在の行終端記号を標準出力ストリームに書き込みます。</summary>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.Boolean)">
      <summary>指定した Boolean 値のテキスト形式を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.Char)">
      <summary>指定した Unicode 文字を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.Char[])">
      <summary>指定した Unicode 文字配列を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="buffer">Unicode 文字配列。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.Char[],System.Int32,System.Int32)">
      <summary>指定した Unicode 文字の部分配列を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="buffer">Unicode 文字の配列。</param>
      <param name="index">
        <paramref name="buffer" /> 内の開始位置。</param>
      <param name="count">書き込む文字数。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="buffer" /> は null です。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> または <paramref name="count" /> が 0 未満です。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="index" /><paramref name="count" /> を足した数が、この <paramref name="buffer" /> 内にない位置を示しています。</exception>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.Decimal)">
      <summary>指定した <see cref="T:System.Decimal" /> 値のテキスト形式を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.Double)">
      <summary>指定した倍精度浮動小数点値のテキスト形式を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.Int32)">
      <summary>指定した 32 ビット符号付き整数値のテキスト形式を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.Int64)">
      <summary>指定した 64 ビット符号付き整数値のテキスト形式を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.Object)">
      <summary>指定したオブジェクトのテキスト形式を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.Single)">
      <summary>指定した単精度浮動小数点値のテキスト形式を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.String)">
      <summary>指定した文字列値を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.String,System.Object)">
      <summary>指定した書式情報を使用して、指定したオブジェクトのテキスト表現を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="format">複合書式指定文字列 (「解説」を参照)。</param>
      <param name="arg0">
        <paramref name="format" /> を使用して書き込むオブジェクト。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="format" /> は null です。</exception>
      <exception cref="T:System.FormatException">
        <paramref name="format" /> の書式指定が無効です。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.String,System.Object,System.Object)">
      <summary>指定した書式情報を使用して、指定したオブジェクトのテキスト表現を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="format">複合書式指定文字列 (「解説」を参照)。</param>
      <param name="arg0">
        <paramref name="format" /> を使用して書き込む最初のオブジェクト。</param>
      <param name="arg1">
        <paramref name="format" /> を使用して書き込む 2 番目のオブジェクト。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="format" /> は null です。</exception>
      <exception cref="T:System.FormatException">
        <paramref name="format" /> の書式指定が無効です。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.String,System.Object,System.Object,System.Object)">
      <summary>指定した書式情報を使用して、指定したオブジェクトのテキスト表現を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="format">複合書式指定文字列 (「解説」を参照)。</param>
      <param name="arg0">
        <paramref name="format" /> を使用して書き込む最初のオブジェクト。</param>
      <param name="arg1">
        <paramref name="format" /> を使用して書き込む 2 番目のオブジェクト。</param>
      <param name="arg2">
        <paramref name="format" /> を使用して書き込む 3 番目のオブジェクト。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="format" /> は null です。</exception>
      <exception cref="T:System.FormatException">
        <paramref name="format" /> の書式指定が無効です。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.String,System.Object[])">
      <summary>指定した書式情報を使用して、指定したオブジェクト配列のテキスト表現を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="format">複合書式指定文字列 (「解説」を参照)。</param>
      <param name="arg">
        <paramref name="format" /> を使用して書き込むオブジェクトの配列。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="format" /> または <paramref name="arg" /> が null です。</exception>
      <exception cref="T:System.FormatException">
        <paramref name="format" /> の書式指定が無効です。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.UInt32)">
      <summary>指定した 32 ビット符号なし整数値のテキスト形式を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.Console.WriteLine(System.UInt64)">
      <summary>指定した 64 ビット符号なし整数値のテキスト形式を標準出力ストリームに書き込み、続けて現在の行終端記号を書き込みます。</summary>
      <param name="value">書き込む値。</param>
      <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="T:System.ConsoleCancelEventArgs">
      <summary>
        <see cref="E:System.Console.CancelKeyPress" /> イベントにデータを提供します。このクラスは継承できません。</summary>
      <filterpriority>2</filterpriority>
    </member>
    <member name="P:System.ConsoleCancelEventArgs.Cancel">
      <summary>
        <see cref="F:System.ConsoleModifiers.Control" /> 修飾子キーと <see cref="F:System.ConsoleKey.C" /> コンソール キー (Ctrl + C) または Ctrl + Break キーを押した場合に現在のプロセスが終了するかどうかを示す値を取得または設定します。現在のプロセスを終了する既定値は false です。</summary>
      <returns>イベント ハンドラーの終了時に現在のプロセスを再開する場合は、true。現在のプロセスを終了する場合は、false。既定値は false です。現在のプロセスは、イベント ハンドラーが返されると終了します。true の場合、現在のプロセスが継続されます。</returns>
      <filterpriority>2</filterpriority>
    </member>
    <member name="P:System.ConsoleCancelEventArgs.SpecialKey">
      <summary>現在のプロセスを中断した修飾子キーとコンソール キーの組み合わせを取得します。</summary>
      <returns>現在のプロセスを中断するキーの組み合わせを指定する列挙値の 1 つ。既定値はありません。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="T:System.ConsoleCancelEventHandler">
      <summary>
        <see cref="T:System.Console" /><see cref="E:System.Console.CancelKeyPress" /> イベントを処理するメソッドを表します。</summary>
      <param name="sender">イベントのソース。</param>
      <param name="e">イベント データを格納している <see cref="T:System.ConsoleCancelEventArgs" /> オブジェクト。 </param>
      <filterpriority>2</filterpriority>
    </member>
    <member name="T:System.ConsoleColor">
      <summary>コンソールの前景色と背景色を定義する定数を指定します。</summary>
      <filterpriority>2</filterpriority>
    </member>
    <member name="F:System.ConsoleColor.Black">
      <summary>黒。</summary>
    </member>
    <member name="F:System.ConsoleColor.Blue">
      <summary>青。</summary>
    </member>
    <member name="F:System.ConsoleColor.Cyan">
      <summary>シアン (青緑)。</summary>
    </member>
    <member name="F:System.ConsoleColor.DarkBlue">
      <summary>濃い青。</summary>
    </member>
    <member name="F:System.ConsoleColor.DarkCyan">
      <summary>濃いシアン (濃い青緑)。</summary>
    </member>
    <member name="F:System.ConsoleColor.DarkGray">
      <summary>濃い灰色。</summary>
    </member>
    <member name="F:System.ConsoleColor.DarkGreen">
      <summary>濃い緑。</summary>
    </member>
    <member name="F:System.ConsoleColor.DarkMagenta">
      <summary>濃いマゼンタ (濃い赤紫)。</summary>
    </member>
    <member name="F:System.ConsoleColor.DarkRed">
      <summary>濃い赤。</summary>
    </member>
    <member name="F:System.ConsoleColor.DarkYellow">
      <summary>濃い黄色 (黄土色)。</summary>
    </member>
    <member name="F:System.ConsoleColor.Gray">
      <summary>灰色。</summary>
    </member>
    <member name="F:System.ConsoleColor.Green">
      <summary>緑。</summary>
    </member>
    <member name="F:System.ConsoleColor.Magenta">
      <summary>マゼンタ (赤紫)。</summary>
    </member>
    <member name="F:System.ConsoleColor.Red">
      <summary>赤。</summary>
    </member>
    <member name="F:System.ConsoleColor.White">
      <summary>白。</summary>
    </member>
    <member name="F:System.ConsoleColor.Yellow">
      <summary>黄色。</summary>
    </member>
    <member name="T:System.ConsoleSpecialKey">
      <summary>現在のプロセスを中断できる修飾子キーとコンソール キーの組み合わせを指定します。</summary>
      <filterpriority>1</filterpriority>
    </member>
    <member name="F:System.ConsoleSpecialKey.ControlBreak">
      <summary>
        <see cref="F:System.ConsoleModifiers.Control" /> 修飾子キーと Break コンソール キー。</summary>
    </member>
    <member name="F:System.ConsoleSpecialKey.ControlC">
      <summary>
        <see cref="F:System.ConsoleModifiers.Control" /> 修飾子キーと <see cref="F:System.ConsoleKey.C" /> コンソール キー。</summary>
    </member>
  </members>
</doc>