You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

System.Console.xml 34 KiB

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