Terminal.Gui.FakeConsole.html 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862
  1. <!DOCTYPE html>
  2. <!--[if IE]><![endif]-->
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  7. <title>Class FakeConsole
  8. </title>
  9. <meta name="viewport" content="width=device-width">
  10. <meta name="title" content="Class FakeConsole
  11. ">
  12. <meta name="generator" content="docfx 2.56.7.0">
  13. <link rel="shortcut icon" href="../../favicon.ico">
  14. <link rel="stylesheet" href="../../styles/docfx.vendor.css">
  15. <link rel="stylesheet" href="../../styles/docfx.css">
  16. <link rel="stylesheet" href="../../styles/main.css">
  17. <meta property="docfx:navrel" content="../../toc.html">
  18. <meta property="docfx:tocrel" content="toc.html">
  19. <meta property="docfx:rel" content="../../">
  20. </head>
  21. <body data-spy="scroll" data-target="#affix" data-offset="120">
  22. <div id="wrapper">
  23. <header>
  24. <nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
  25. <div class="container">
  26. <div class="navbar-header">
  27. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
  28. <span class="sr-only">Toggle navigation</span>
  29. <span class="icon-bar"></span>
  30. <span class="icon-bar"></span>
  31. <span class="icon-bar"></span>
  32. </button>
  33. <a class="navbar-brand" href="../../index.html">
  34. <img id="logo" class="svg" src="../../images/logo48.png" alt="">
  35. </a>
  36. </div>
  37. <div class="collapse navbar-collapse" id="navbar">
  38. <form class="navbar-form navbar-right" role="search" id="search">
  39. <div class="form-group">
  40. <input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
  41. </div>
  42. </form>
  43. </div>
  44. </div>
  45. </nav>
  46. <div class="subnav navbar navbar-default">
  47. <div class="container hide-when-search" id="breadcrumb">
  48. <ul class="breadcrumb">
  49. <li></li>
  50. </ul>
  51. </div>
  52. </div>
  53. </header>
  54. <div class="container body-content">
  55. <div id="search-results">
  56. <div class="search-list">Search Results for <span></span></div>
  57. <div class="sr-items">
  58. <p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
  59. </div>
  60. <ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
  61. </div>
  62. </div>
  63. <div role="main" class="container body-content hide-when-search">
  64. <div class="sidenav hide-when-search">
  65. <a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
  66. <div class="sidetoggle collapse" id="sidetoggle">
  67. <div id="sidetoc"></div>
  68. </div>
  69. </div>
  70. <div class="article row grid-right">
  71. <div class="col-md-10">
  72. <article class="content wrap" id="_content" data-uid="Terminal.Gui.FakeConsole">
  73. <h1 id="Terminal_Gui_FakeConsole" data-uid="Terminal.Gui.FakeConsole" class="text-break">Class FakeConsole
  74. </h1>
  75. <div class="markdown level0 summary">
  76. </div>
  77. <div class="markdown level0 conceptual"></div>
  78. <div class="inheritance">
  79. <h5>Inheritance</h5>
  80. <div class="level0"><span class="xref">System.Object</span></div>
  81. <div class="level1"><span class="xref">FakeConsole</span></div>
  82. </div>
  83. <div class="inheritedMembers">
  84. <h5>Inherited Members</h5>
  85. <div>
  86. <span class="xref">System.Object.Equals(System.Object)</span>
  87. </div>
  88. <div>
  89. <span class="xref">System.Object.Equals(System.Object, System.Object)</span>
  90. </div>
  91. <div>
  92. <span class="xref">System.Object.GetHashCode()</span>
  93. </div>
  94. <div>
  95. <span class="xref">System.Object.GetType()</span>
  96. </div>
  97. <div>
  98. <span class="xref">System.Object.MemberwiseClone()</span>
  99. </div>
  100. <div>
  101. <span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
  102. </div>
  103. <div>
  104. <span class="xref">System.Object.ToString()</span>
  105. </div>
  106. </div>
  107. <h6><strong>Namespace</strong>: <a class="xref" href="Terminal.Gui.html">Terminal.Gui</a></h6>
  108. <h6><strong>Assembly</strong>: Terminal.Gui.dll</h6>
  109. <h5 id="Terminal_Gui_FakeConsole_syntax">Syntax</h5>
  110. <div class="codewrapper">
  111. <pre><code class="lang-csharp hljs">public static class FakeConsole</code></pre>
  112. </div>
  113. <h3 id="fields">Fields
  114. </h3>
  115. <h4 id="Terminal_Gui_FakeConsole_MockKeyPresses" data-uid="Terminal.Gui.FakeConsole.MockKeyPresses">MockKeyPresses</h4>
  116. <div class="markdown level1 summary">
  117. </div>
  118. <div class="markdown level1 conceptual"></div>
  119. <h5 class="decalaration">Declaration</h5>
  120. <div class="codewrapper">
  121. <pre><code class="lang-csharp hljs">public static Stack&lt;ConsoleKeyInfo&gt; MockKeyPresses</code></pre>
  122. </div>
  123. <h5 class="fieldValue">Field Value</h5>
  124. <table class="table table-bordered table-striped table-condensed">
  125. <thead>
  126. <tr>
  127. <th>Type</th>
  128. <th>Description</th>
  129. </tr>
  130. </thead>
  131. <tbody>
  132. <tr>
  133. <td><span class="xref">System.Collections.Generic.Stack</span>&lt;<span class="xref">System.ConsoleKeyInfo</span>&gt;</td>
  134. <td></td>
  135. </tr>
  136. </tbody>
  137. </table>
  138. <h3 id="properties">Properties
  139. </h3>
  140. <a id="Terminal_Gui_FakeConsole_BackgroundColor_" data-uid="Terminal.Gui.FakeConsole.BackgroundColor*"></a>
  141. <h4 id="Terminal_Gui_FakeConsole_BackgroundColor" data-uid="Terminal.Gui.FakeConsole.BackgroundColor">BackgroundColor</h4>
  142. <div class="markdown level1 summary">
  143. </div>
  144. <div class="markdown level1 conceptual"></div>
  145. <h5 class="decalaration">Declaration</h5>
  146. <div class="codewrapper">
  147. <pre><code class="lang-csharp hljs">public static ConsoleColor BackgroundColor { get; set; }</code></pre>
  148. </div>
  149. <h5 class="propertyValue">Property Value</h5>
  150. <table class="table table-bordered table-striped table-condensed">
  151. <thead>
  152. <tr>
  153. <th>Type</th>
  154. <th>Description</th>
  155. </tr>
  156. </thead>
  157. <tbody>
  158. <tr>
  159. <td><span class="xref">System.ConsoleColor</span></td>
  160. <td></td>
  161. </tr>
  162. </tbody>
  163. </table>
  164. <a id="Terminal_Gui_FakeConsole_BufferHeight_" data-uid="Terminal.Gui.FakeConsole.BufferHeight*"></a>
  165. <h4 id="Terminal_Gui_FakeConsole_BufferHeight" data-uid="Terminal.Gui.FakeConsole.BufferHeight">BufferHeight</h4>
  166. <div class="markdown level1 summary">
  167. </div>
  168. <div class="markdown level1 conceptual"></div>
  169. <h5 class="decalaration">Declaration</h5>
  170. <div class="codewrapper">
  171. <pre><code class="lang-csharp hljs">public static int BufferHeight { get; set; }</code></pre>
  172. </div>
  173. <h5 class="propertyValue">Property Value</h5>
  174. <table class="table table-bordered table-striped table-condensed">
  175. <thead>
  176. <tr>
  177. <th>Type</th>
  178. <th>Description</th>
  179. </tr>
  180. </thead>
  181. <tbody>
  182. <tr>
  183. <td><span class="xref">System.Int32</span></td>
  184. <td></td>
  185. </tr>
  186. </tbody>
  187. </table>
  188. <a id="Terminal_Gui_FakeConsole_BufferWidth_" data-uid="Terminal.Gui.FakeConsole.BufferWidth*"></a>
  189. <h4 id="Terminal_Gui_FakeConsole_BufferWidth" data-uid="Terminal.Gui.FakeConsole.BufferWidth">BufferWidth</h4>
  190. <div class="markdown level1 summary">
  191. </div>
  192. <div class="markdown level1 conceptual"></div>
  193. <h5 class="decalaration">Declaration</h5>
  194. <div class="codewrapper">
  195. <pre><code class="lang-csharp hljs">public static int BufferWidth { get; set; }</code></pre>
  196. </div>
  197. <h5 class="propertyValue">Property Value</h5>
  198. <table class="table table-bordered table-striped table-condensed">
  199. <thead>
  200. <tr>
  201. <th>Type</th>
  202. <th>Description</th>
  203. </tr>
  204. </thead>
  205. <tbody>
  206. <tr>
  207. <td><span class="xref">System.Int32</span></td>
  208. <td></td>
  209. </tr>
  210. </tbody>
  211. </table>
  212. <a id="Terminal_Gui_FakeConsole_CapsLock_" data-uid="Terminal.Gui.FakeConsole.CapsLock*"></a>
  213. <h4 id="Terminal_Gui_FakeConsole_CapsLock" data-uid="Terminal.Gui.FakeConsole.CapsLock">CapsLock</h4>
  214. <div class="markdown level1 summary">
  215. </div>
  216. <div class="markdown level1 conceptual"></div>
  217. <h5 class="decalaration">Declaration</h5>
  218. <div class="codewrapper">
  219. <pre><code class="lang-csharp hljs">public static bool CapsLock { get; }</code></pre>
  220. </div>
  221. <h5 class="propertyValue">Property Value</h5>
  222. <table class="table table-bordered table-striped table-condensed">
  223. <thead>
  224. <tr>
  225. <th>Type</th>
  226. <th>Description</th>
  227. </tr>
  228. </thead>
  229. <tbody>
  230. <tr>
  231. <td><span class="xref">System.Boolean</span></td>
  232. <td></td>
  233. </tr>
  234. </tbody>
  235. </table>
  236. <a id="Terminal_Gui_FakeConsole_CursorLeft_" data-uid="Terminal.Gui.FakeConsole.CursorLeft*"></a>
  237. <h4 id="Terminal_Gui_FakeConsole_CursorLeft" data-uid="Terminal.Gui.FakeConsole.CursorLeft">CursorLeft</h4>
  238. <div class="markdown level1 summary">
  239. </div>
  240. <div class="markdown level1 conceptual"></div>
  241. <h5 class="decalaration">Declaration</h5>
  242. <div class="codewrapper">
  243. <pre><code class="lang-csharp hljs">public static int CursorLeft { get; set; }</code></pre>
  244. </div>
  245. <h5 class="propertyValue">Property Value</h5>
  246. <table class="table table-bordered table-striped table-condensed">
  247. <thead>
  248. <tr>
  249. <th>Type</th>
  250. <th>Description</th>
  251. </tr>
  252. </thead>
  253. <tbody>
  254. <tr>
  255. <td><span class="xref">System.Int32</span></td>
  256. <td></td>
  257. </tr>
  258. </tbody>
  259. </table>
  260. <a id="Terminal_Gui_FakeConsole_CursorSize_" data-uid="Terminal.Gui.FakeConsole.CursorSize*"></a>
  261. <h4 id="Terminal_Gui_FakeConsole_CursorSize" data-uid="Terminal.Gui.FakeConsole.CursorSize">CursorSize</h4>
  262. <div class="markdown level1 summary">
  263. </div>
  264. <div class="markdown level1 conceptual"></div>
  265. <h5 class="decalaration">Declaration</h5>
  266. <div class="codewrapper">
  267. <pre><code class="lang-csharp hljs">public static int CursorSize { get; set; }</code></pre>
  268. </div>
  269. <h5 class="propertyValue">Property Value</h5>
  270. <table class="table table-bordered table-striped table-condensed">
  271. <thead>
  272. <tr>
  273. <th>Type</th>
  274. <th>Description</th>
  275. </tr>
  276. </thead>
  277. <tbody>
  278. <tr>
  279. <td><span class="xref">System.Int32</span></td>
  280. <td></td>
  281. </tr>
  282. </tbody>
  283. </table>
  284. <a id="Terminal_Gui_FakeConsole_CursorTop_" data-uid="Terminal.Gui.FakeConsole.CursorTop*"></a>
  285. <h4 id="Terminal_Gui_FakeConsole_CursorTop" data-uid="Terminal.Gui.FakeConsole.CursorTop">CursorTop</h4>
  286. <div class="markdown level1 summary">
  287. </div>
  288. <div class="markdown level1 conceptual"></div>
  289. <h5 class="decalaration">Declaration</h5>
  290. <div class="codewrapper">
  291. <pre><code class="lang-csharp hljs">public static int CursorTop { get; set; }</code></pre>
  292. </div>
  293. <h5 class="propertyValue">Property Value</h5>
  294. <table class="table table-bordered table-striped table-condensed">
  295. <thead>
  296. <tr>
  297. <th>Type</th>
  298. <th>Description</th>
  299. </tr>
  300. </thead>
  301. <tbody>
  302. <tr>
  303. <td><span class="xref">System.Int32</span></td>
  304. <td></td>
  305. </tr>
  306. </tbody>
  307. </table>
  308. <a id="Terminal_Gui_FakeConsole_CursorVisible_" data-uid="Terminal.Gui.FakeConsole.CursorVisible*"></a>
  309. <h4 id="Terminal_Gui_FakeConsole_CursorVisible" data-uid="Terminal.Gui.FakeConsole.CursorVisible">CursorVisible</h4>
  310. <div class="markdown level1 summary">
  311. </div>
  312. <div class="markdown level1 conceptual"></div>
  313. <h5 class="decalaration">Declaration</h5>
  314. <div class="codewrapper">
  315. <pre><code class="lang-csharp hljs">public static bool CursorVisible { get; set; }</code></pre>
  316. </div>
  317. <h5 class="propertyValue">Property Value</h5>
  318. <table class="table table-bordered table-striped table-condensed">
  319. <thead>
  320. <tr>
  321. <th>Type</th>
  322. <th>Description</th>
  323. </tr>
  324. </thead>
  325. <tbody>
  326. <tr>
  327. <td><span class="xref">System.Boolean</span></td>
  328. <td></td>
  329. </tr>
  330. </tbody>
  331. </table>
  332. <a id="Terminal_Gui_FakeConsole_Error_" data-uid="Terminal.Gui.FakeConsole.Error*"></a>
  333. <h4 id="Terminal_Gui_FakeConsole_Error" data-uid="Terminal.Gui.FakeConsole.Error">Error</h4>
  334. <div class="markdown level1 summary">
  335. </div>
  336. <div class="markdown level1 conceptual"></div>
  337. <h5 class="decalaration">Declaration</h5>
  338. <div class="codewrapper">
  339. <pre><code class="lang-csharp hljs">public static TextWriter Error { get; }</code></pre>
  340. </div>
  341. <h5 class="propertyValue">Property Value</h5>
  342. <table class="table table-bordered table-striped table-condensed">
  343. <thead>
  344. <tr>
  345. <th>Type</th>
  346. <th>Description</th>
  347. </tr>
  348. </thead>
  349. <tbody>
  350. <tr>
  351. <td><span class="xref">System.IO.TextWriter</span></td>
  352. <td></td>
  353. </tr>
  354. </tbody>
  355. </table>
  356. <a id="Terminal_Gui_FakeConsole_ForegroundColor_" data-uid="Terminal.Gui.FakeConsole.ForegroundColor*"></a>
  357. <h4 id="Terminal_Gui_FakeConsole_ForegroundColor" data-uid="Terminal.Gui.FakeConsole.ForegroundColor">ForegroundColor</h4>
  358. <div class="markdown level1 summary">
  359. </div>
  360. <div class="markdown level1 conceptual"></div>
  361. <h5 class="decalaration">Declaration</h5>
  362. <div class="codewrapper">
  363. <pre><code class="lang-csharp hljs">public static ConsoleColor ForegroundColor { get; set; }</code></pre>
  364. </div>
  365. <h5 class="propertyValue">Property Value</h5>
  366. <table class="table table-bordered table-striped table-condensed">
  367. <thead>
  368. <tr>
  369. <th>Type</th>
  370. <th>Description</th>
  371. </tr>
  372. </thead>
  373. <tbody>
  374. <tr>
  375. <td><span class="xref">System.ConsoleColor</span></td>
  376. <td></td>
  377. </tr>
  378. </tbody>
  379. </table>
  380. <a id="Terminal_Gui_FakeConsole_In_" data-uid="Terminal.Gui.FakeConsole.In*"></a>
  381. <h4 id="Terminal_Gui_FakeConsole_In" data-uid="Terminal.Gui.FakeConsole.In">In</h4>
  382. <div class="markdown level1 summary">
  383. </div>
  384. <div class="markdown level1 conceptual"></div>
  385. <h5 class="decalaration">Declaration</h5>
  386. <div class="codewrapper">
  387. <pre><code class="lang-csharp hljs">public static TextReader In { get; }</code></pre>
  388. </div>
  389. <h5 class="propertyValue">Property Value</h5>
  390. <table class="table table-bordered table-striped table-condensed">
  391. <thead>
  392. <tr>
  393. <th>Type</th>
  394. <th>Description</th>
  395. </tr>
  396. </thead>
  397. <tbody>
  398. <tr>
  399. <td><span class="xref">System.IO.TextReader</span></td>
  400. <td></td>
  401. </tr>
  402. </tbody>
  403. </table>
  404. <a id="Terminal_Gui_FakeConsole_InputEncoding_" data-uid="Terminal.Gui.FakeConsole.InputEncoding*"></a>
  405. <h4 id="Terminal_Gui_FakeConsole_InputEncoding" data-uid="Terminal.Gui.FakeConsole.InputEncoding">InputEncoding</h4>
  406. <div class="markdown level1 summary">
  407. </div>
  408. <div class="markdown level1 conceptual"></div>
  409. <h5 class="decalaration">Declaration</h5>
  410. <div class="codewrapper">
  411. <pre><code class="lang-csharp hljs">public static Encoding InputEncoding { get; set; }</code></pre>
  412. </div>
  413. <h5 class="propertyValue">Property Value</h5>
  414. <table class="table table-bordered table-striped table-condensed">
  415. <thead>
  416. <tr>
  417. <th>Type</th>
  418. <th>Description</th>
  419. </tr>
  420. </thead>
  421. <tbody>
  422. <tr>
  423. <td><span class="xref">System.Text.Encoding</span></td>
  424. <td></td>
  425. </tr>
  426. </tbody>
  427. </table>
  428. <a id="Terminal_Gui_FakeConsole_IsErrorRedirected_" data-uid="Terminal.Gui.FakeConsole.IsErrorRedirected*"></a>
  429. <h4 id="Terminal_Gui_FakeConsole_IsErrorRedirected" data-uid="Terminal.Gui.FakeConsole.IsErrorRedirected">IsErrorRedirected</h4>
  430. <div class="markdown level1 summary">
  431. </div>
  432. <div class="markdown level1 conceptual"></div>
  433. <h5 class="decalaration">Declaration</h5>
  434. <div class="codewrapper">
  435. <pre><code class="lang-csharp hljs">public static bool IsErrorRedirected { get; }</code></pre>
  436. </div>
  437. <h5 class="propertyValue">Property Value</h5>
  438. <table class="table table-bordered table-striped table-condensed">
  439. <thead>
  440. <tr>
  441. <th>Type</th>
  442. <th>Description</th>
  443. </tr>
  444. </thead>
  445. <tbody>
  446. <tr>
  447. <td><span class="xref">System.Boolean</span></td>
  448. <td></td>
  449. </tr>
  450. </tbody>
  451. </table>
  452. <a id="Terminal_Gui_FakeConsole_IsInputRedirected_" data-uid="Terminal.Gui.FakeConsole.IsInputRedirected*"></a>
  453. <h4 id="Terminal_Gui_FakeConsole_IsInputRedirected" data-uid="Terminal.Gui.FakeConsole.IsInputRedirected">IsInputRedirected</h4>
  454. <div class="markdown level1 summary">
  455. </div>
  456. <div class="markdown level1 conceptual"></div>
  457. <h5 class="decalaration">Declaration</h5>
  458. <div class="codewrapper">
  459. <pre><code class="lang-csharp hljs">public static bool IsInputRedirected { get; }</code></pre>
  460. </div>
  461. <h5 class="propertyValue">Property Value</h5>
  462. <table class="table table-bordered table-striped table-condensed">
  463. <thead>
  464. <tr>
  465. <th>Type</th>
  466. <th>Description</th>
  467. </tr>
  468. </thead>
  469. <tbody>
  470. <tr>
  471. <td><span class="xref">System.Boolean</span></td>
  472. <td></td>
  473. </tr>
  474. </tbody>
  475. </table>
  476. <a id="Terminal_Gui_FakeConsole_IsOutputRedirected_" data-uid="Terminal.Gui.FakeConsole.IsOutputRedirected*"></a>
  477. <h4 id="Terminal_Gui_FakeConsole_IsOutputRedirected" data-uid="Terminal.Gui.FakeConsole.IsOutputRedirected">IsOutputRedirected</h4>
  478. <div class="markdown level1 summary">
  479. </div>
  480. <div class="markdown level1 conceptual"></div>
  481. <h5 class="decalaration">Declaration</h5>
  482. <div class="codewrapper">
  483. <pre><code class="lang-csharp hljs">public static bool IsOutputRedirected { get; }</code></pre>
  484. </div>
  485. <h5 class="propertyValue">Property Value</h5>
  486. <table class="table table-bordered table-striped table-condensed">
  487. <thead>
  488. <tr>
  489. <th>Type</th>
  490. <th>Description</th>
  491. </tr>
  492. </thead>
  493. <tbody>
  494. <tr>
  495. <td><span class="xref">System.Boolean</span></td>
  496. <td></td>
  497. </tr>
  498. </tbody>
  499. </table>
  500. <a id="Terminal_Gui_FakeConsole_KeyAvailable_" data-uid="Terminal.Gui.FakeConsole.KeyAvailable*"></a>
  501. <h4 id="Terminal_Gui_FakeConsole_KeyAvailable" data-uid="Terminal.Gui.FakeConsole.KeyAvailable">KeyAvailable</h4>
  502. <div class="markdown level1 summary">
  503. </div>
  504. <div class="markdown level1 conceptual"></div>
  505. <h5 class="decalaration">Declaration</h5>
  506. <div class="codewrapper">
  507. <pre><code class="lang-csharp hljs">public static bool KeyAvailable { get; }</code></pre>
  508. </div>
  509. <h5 class="propertyValue">Property Value</h5>
  510. <table class="table table-bordered table-striped table-condensed">
  511. <thead>
  512. <tr>
  513. <th>Type</th>
  514. <th>Description</th>
  515. </tr>
  516. </thead>
  517. <tbody>
  518. <tr>
  519. <td><span class="xref">System.Boolean</span></td>
  520. <td></td>
  521. </tr>
  522. </tbody>
  523. </table>
  524. <a id="Terminal_Gui_FakeConsole_LargestWindowHeight_" data-uid="Terminal.Gui.FakeConsole.LargestWindowHeight*"></a>
  525. <h4 id="Terminal_Gui_FakeConsole_LargestWindowHeight" data-uid="Terminal.Gui.FakeConsole.LargestWindowHeight">LargestWindowHeight</h4>
  526. <div class="markdown level1 summary">
  527. </div>
  528. <div class="markdown level1 conceptual"></div>
  529. <h5 class="decalaration">Declaration</h5>
  530. <div class="codewrapper">
  531. <pre><code class="lang-csharp hljs">public static int LargestWindowHeight { get; }</code></pre>
  532. </div>
  533. <h5 class="propertyValue">Property Value</h5>
  534. <table class="table table-bordered table-striped table-condensed">
  535. <thead>
  536. <tr>
  537. <th>Type</th>
  538. <th>Description</th>
  539. </tr>
  540. </thead>
  541. <tbody>
  542. <tr>
  543. <td><span class="xref">System.Int32</span></td>
  544. <td></td>
  545. </tr>
  546. </tbody>
  547. </table>
  548. <a id="Terminal_Gui_FakeConsole_LargestWindowWidth_" data-uid="Terminal.Gui.FakeConsole.LargestWindowWidth*"></a>
  549. <h4 id="Terminal_Gui_FakeConsole_LargestWindowWidth" data-uid="Terminal.Gui.FakeConsole.LargestWindowWidth">LargestWindowWidth</h4>
  550. <div class="markdown level1 summary">
  551. </div>
  552. <div class="markdown level1 conceptual"></div>
  553. <h5 class="decalaration">Declaration</h5>
  554. <div class="codewrapper">
  555. <pre><code class="lang-csharp hljs">public static int LargestWindowWidth { get; }</code></pre>
  556. </div>
  557. <h5 class="propertyValue">Property Value</h5>
  558. <table class="table table-bordered table-striped table-condensed">
  559. <thead>
  560. <tr>
  561. <th>Type</th>
  562. <th>Description</th>
  563. </tr>
  564. </thead>
  565. <tbody>
  566. <tr>
  567. <td><span class="xref">System.Int32</span></td>
  568. <td></td>
  569. </tr>
  570. </tbody>
  571. </table>
  572. <a id="Terminal_Gui_FakeConsole_NumberLock_" data-uid="Terminal.Gui.FakeConsole.NumberLock*"></a>
  573. <h4 id="Terminal_Gui_FakeConsole_NumberLock" data-uid="Terminal.Gui.FakeConsole.NumberLock">NumberLock</h4>
  574. <div class="markdown level1 summary">
  575. </div>
  576. <div class="markdown level1 conceptual"></div>
  577. <h5 class="decalaration">Declaration</h5>
  578. <div class="codewrapper">
  579. <pre><code class="lang-csharp hljs">public static bool NumberLock { get; }</code></pre>
  580. </div>
  581. <h5 class="propertyValue">Property Value</h5>
  582. <table class="table table-bordered table-striped table-condensed">
  583. <thead>
  584. <tr>
  585. <th>Type</th>
  586. <th>Description</th>
  587. </tr>
  588. </thead>
  589. <tbody>
  590. <tr>
  591. <td><span class="xref">System.Boolean</span></td>
  592. <td></td>
  593. </tr>
  594. </tbody>
  595. </table>
  596. <a id="Terminal_Gui_FakeConsole_Out_" data-uid="Terminal.Gui.FakeConsole.Out*"></a>
  597. <h4 id="Terminal_Gui_FakeConsole_Out" data-uid="Terminal.Gui.FakeConsole.Out">Out</h4>
  598. <div class="markdown level1 summary">
  599. </div>
  600. <div class="markdown level1 conceptual"></div>
  601. <h5 class="decalaration">Declaration</h5>
  602. <div class="codewrapper">
  603. <pre><code class="lang-csharp hljs">public static TextWriter Out { get; }</code></pre>
  604. </div>
  605. <h5 class="propertyValue">Property Value</h5>
  606. <table class="table table-bordered table-striped table-condensed">
  607. <thead>
  608. <tr>
  609. <th>Type</th>
  610. <th>Description</th>
  611. </tr>
  612. </thead>
  613. <tbody>
  614. <tr>
  615. <td><span class="xref">System.IO.TextWriter</span></td>
  616. <td></td>
  617. </tr>
  618. </tbody>
  619. </table>
  620. <a id="Terminal_Gui_FakeConsole_OutputEncoding_" data-uid="Terminal.Gui.FakeConsole.OutputEncoding*"></a>
  621. <h4 id="Terminal_Gui_FakeConsole_OutputEncoding" data-uid="Terminal.Gui.FakeConsole.OutputEncoding">OutputEncoding</h4>
  622. <div class="markdown level1 summary">
  623. </div>
  624. <div class="markdown level1 conceptual"></div>
  625. <h5 class="decalaration">Declaration</h5>
  626. <div class="codewrapper">
  627. <pre><code class="lang-csharp hljs">public static Encoding OutputEncoding { get; set; }</code></pre>
  628. </div>
  629. <h5 class="propertyValue">Property Value</h5>
  630. <table class="table table-bordered table-striped table-condensed">
  631. <thead>
  632. <tr>
  633. <th>Type</th>
  634. <th>Description</th>
  635. </tr>
  636. </thead>
  637. <tbody>
  638. <tr>
  639. <td><span class="xref">System.Text.Encoding</span></td>
  640. <td></td>
  641. </tr>
  642. </tbody>
  643. </table>
  644. <a id="Terminal_Gui_FakeConsole_Title_" data-uid="Terminal.Gui.FakeConsole.Title*"></a>
  645. <h4 id="Terminal_Gui_FakeConsole_Title" data-uid="Terminal.Gui.FakeConsole.Title">Title</h4>
  646. <div class="markdown level1 summary">
  647. </div>
  648. <div class="markdown level1 conceptual"></div>
  649. <h5 class="decalaration">Declaration</h5>
  650. <div class="codewrapper">
  651. <pre><code class="lang-csharp hljs">public static string Title { get; set; }</code></pre>
  652. </div>
  653. <h5 class="propertyValue">Property Value</h5>
  654. <table class="table table-bordered table-striped table-condensed">
  655. <thead>
  656. <tr>
  657. <th>Type</th>
  658. <th>Description</th>
  659. </tr>
  660. </thead>
  661. <tbody>
  662. <tr>
  663. <td><span class="xref">System.String</span></td>
  664. <td></td>
  665. </tr>
  666. </tbody>
  667. </table>
  668. <a id="Terminal_Gui_FakeConsole_TreatControlCAsInput_" data-uid="Terminal.Gui.FakeConsole.TreatControlCAsInput*"></a>
  669. <h4 id="Terminal_Gui_FakeConsole_TreatControlCAsInput" data-uid="Terminal.Gui.FakeConsole.TreatControlCAsInput">TreatControlCAsInput</h4>
  670. <div class="markdown level1 summary">
  671. </div>
  672. <div class="markdown level1 conceptual"></div>
  673. <h5 class="decalaration">Declaration</h5>
  674. <div class="codewrapper">
  675. <pre><code class="lang-csharp hljs">public static bool TreatControlCAsInput { get; set; }</code></pre>
  676. </div>
  677. <h5 class="propertyValue">Property Value</h5>
  678. <table class="table table-bordered table-striped table-condensed">
  679. <thead>
  680. <tr>
  681. <th>Type</th>
  682. <th>Description</th>
  683. </tr>
  684. </thead>
  685. <tbody>
  686. <tr>
  687. <td><span class="xref">System.Boolean</span></td>
  688. <td></td>
  689. </tr>
  690. </tbody>
  691. </table>
  692. <a id="Terminal_Gui_FakeConsole_WindowHeight_" data-uid="Terminal.Gui.FakeConsole.WindowHeight*"></a>
  693. <h4 id="Terminal_Gui_FakeConsole_WindowHeight" data-uid="Terminal.Gui.FakeConsole.WindowHeight">WindowHeight</h4>
  694. <div class="markdown level1 summary">
  695. </div>
  696. <div class="markdown level1 conceptual"></div>
  697. <h5 class="decalaration">Declaration</h5>
  698. <div class="codewrapper">
  699. <pre><code class="lang-csharp hljs">public static int WindowHeight { get; set; }</code></pre>
  700. </div>
  701. <h5 class="propertyValue">Property Value</h5>
  702. <table class="table table-bordered table-striped table-condensed">
  703. <thead>
  704. <tr>
  705. <th>Type</th>
  706. <th>Description</th>
  707. </tr>
  708. </thead>
  709. <tbody>
  710. <tr>
  711. <td><span class="xref">System.Int32</span></td>
  712. <td></td>
  713. </tr>
  714. </tbody>
  715. </table>
  716. <a id="Terminal_Gui_FakeConsole_WindowLeft_" data-uid="Terminal.Gui.FakeConsole.WindowLeft*"></a>
  717. <h4 id="Terminal_Gui_FakeConsole_WindowLeft" data-uid="Terminal.Gui.FakeConsole.WindowLeft">WindowLeft</h4>
  718. <div class="markdown level1 summary">
  719. </div>
  720. <div class="markdown level1 conceptual"></div>
  721. <h5 class="decalaration">Declaration</h5>
  722. <div class="codewrapper">
  723. <pre><code class="lang-csharp hljs">public static int WindowLeft { get; set; }</code></pre>
  724. </div>
  725. <h5 class="propertyValue">Property Value</h5>
  726. <table class="table table-bordered table-striped table-condensed">
  727. <thead>
  728. <tr>
  729. <th>Type</th>
  730. <th>Description</th>
  731. </tr>
  732. </thead>
  733. <tbody>
  734. <tr>
  735. <td><span class="xref">System.Int32</span></td>
  736. <td></td>
  737. </tr>
  738. </tbody>
  739. </table>
  740. <a id="Terminal_Gui_FakeConsole_WindowTop_" data-uid="Terminal.Gui.FakeConsole.WindowTop*"></a>
  741. <h4 id="Terminal_Gui_FakeConsole_WindowTop" data-uid="Terminal.Gui.FakeConsole.WindowTop">WindowTop</h4>
  742. <div class="markdown level1 summary">
  743. </div>
  744. <div class="markdown level1 conceptual"></div>
  745. <h5 class="decalaration">Declaration</h5>
  746. <div class="codewrapper">
  747. <pre><code class="lang-csharp hljs">public static int WindowTop { get; set; }</code></pre>
  748. </div>
  749. <h5 class="propertyValue">Property Value</h5>
  750. <table class="table table-bordered table-striped table-condensed">
  751. <thead>
  752. <tr>
  753. <th>Type</th>
  754. <th>Description</th>
  755. </tr>
  756. </thead>
  757. <tbody>
  758. <tr>
  759. <td><span class="xref">System.Int32</span></td>
  760. <td></td>
  761. </tr>
  762. </tbody>
  763. </table>
  764. <a id="Terminal_Gui_FakeConsole_WindowWidth_" data-uid="Terminal.Gui.FakeConsole.WindowWidth*"></a>
  765. <h4 id="Terminal_Gui_FakeConsole_WindowWidth" data-uid="Terminal.Gui.FakeConsole.WindowWidth">WindowWidth</h4>
  766. <div class="markdown level1 summary">
  767. </div>
  768. <div class="markdown level1 conceptual"></div>
  769. <h5 class="decalaration">Declaration</h5>
  770. <div class="codewrapper">
  771. <pre><code class="lang-csharp hljs">public static int WindowWidth { get; set; }</code></pre>
  772. </div>
  773. <h5 class="propertyValue">Property Value</h5>
  774. <table class="table table-bordered table-striped table-condensed">
  775. <thead>
  776. <tr>
  777. <th>Type</th>
  778. <th>Description</th>
  779. </tr>
  780. </thead>
  781. <tbody>
  782. <tr>
  783. <td><span class="xref">System.Int32</span></td>
  784. <td></td>
  785. </tr>
  786. </tbody>
  787. </table>
  788. <h3 id="methods">Methods
  789. </h3>
  790. <a id="Terminal_Gui_FakeConsole_Beep_" data-uid="Terminal.Gui.FakeConsole.Beep*"></a>
  791. <h4 id="Terminal_Gui_FakeConsole_Beep" data-uid="Terminal.Gui.FakeConsole.Beep">Beep()</h4>
  792. <div class="markdown level1 summary">
  793. </div>
  794. <div class="markdown level1 conceptual"></div>
  795. <h5 class="decalaration">Declaration</h5>
  796. <div class="codewrapper">
  797. <pre><code class="lang-csharp hljs">public static void Beep()</code></pre>
  798. </div>
  799. <a id="Terminal_Gui_FakeConsole_Beep_" data-uid="Terminal.Gui.FakeConsole.Beep*"></a>
  800. <h4 id="Terminal_Gui_FakeConsole_Beep_System_Int32_System_Int32_" data-uid="Terminal.Gui.FakeConsole.Beep(System.Int32,System.Int32)">Beep(Int32, Int32)</h4>
  801. <div class="markdown level1 summary">
  802. </div>
  803. <div class="markdown level1 conceptual"></div>
  804. <h5 class="decalaration">Declaration</h5>
  805. <div class="codewrapper">
  806. <pre><code class="lang-csharp hljs">public static void Beep(int frequency, int duration)</code></pre>
  807. </div>
  808. <h5 class="parameters">Parameters</h5>
  809. <table class="table table-bordered table-striped table-condensed">
  810. <thead>
  811. <tr>
  812. <th>Type</th>
  813. <th>Name</th>
  814. <th>Description</th>
  815. </tr>
  816. </thead>
  817. <tbody>
  818. <tr>
  819. <td><span class="xref">System.Int32</span></td>
  820. <td><span class="parametername">frequency</span></td>
  821. <td></td>
  822. </tr>
  823. <tr>
  824. <td><span class="xref">System.Int32</span></td>
  825. <td><span class="parametername">duration</span></td>
  826. <td></td>
  827. </tr>
  828. </tbody>
  829. </table>
  830. <a id="Terminal_Gui_FakeConsole_Clear_" data-uid="Terminal.Gui.FakeConsole.Clear*"></a>
  831. <h4 id="Terminal_Gui_FakeConsole_Clear" data-uid="Terminal.Gui.FakeConsole.Clear">Clear()</h4>
  832. <div class="markdown level1 summary">
  833. </div>
  834. <div class="markdown level1 conceptual"></div>
  835. <h5 class="decalaration">Declaration</h5>
  836. <div class="codewrapper">
  837. <pre><code class="lang-csharp hljs">public static void Clear()</code></pre>
  838. </div>
  839. <a id="Terminal_Gui_FakeConsole_MoveBufferArea_" data-uid="Terminal.Gui.FakeConsole.MoveBufferArea*"></a>
  840. <h4 id="Terminal_Gui_FakeConsole_MoveBufferArea_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_" data-uid="Terminal.Gui.FakeConsole.MoveBufferArea(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">MoveBufferArea(Int32, Int32, Int32, Int32, Int32, Int32)</h4>
  841. <div class="markdown level1 summary">
  842. </div>
  843. <div class="markdown level1 conceptual"></div>
  844. <h5 class="decalaration">Declaration</h5>
  845. <div class="codewrapper">
  846. <pre><code class="lang-csharp hljs">public static void MoveBufferArea(int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop)</code></pre>
  847. </div>
  848. <h5 class="parameters">Parameters</h5>
  849. <table class="table table-bordered table-striped table-condensed">
  850. <thead>
  851. <tr>
  852. <th>Type</th>
  853. <th>Name</th>
  854. <th>Description</th>
  855. </tr>
  856. </thead>
  857. <tbody>
  858. <tr>
  859. <td><span class="xref">System.Int32</span></td>
  860. <td><span class="parametername">sourceLeft</span></td>
  861. <td></td>
  862. </tr>
  863. <tr>
  864. <td><span class="xref">System.Int32</span></td>
  865. <td><span class="parametername">sourceTop</span></td>
  866. <td></td>
  867. </tr>
  868. <tr>
  869. <td><span class="xref">System.Int32</span></td>
  870. <td><span class="parametername">sourceWidth</span></td>
  871. <td></td>
  872. </tr>
  873. <tr>
  874. <td><span class="xref">System.Int32</span></td>
  875. <td><span class="parametername">sourceHeight</span></td>
  876. <td></td>
  877. </tr>
  878. <tr>
  879. <td><span class="xref">System.Int32</span></td>
  880. <td><span class="parametername">targetLeft</span></td>
  881. <td></td>
  882. </tr>
  883. <tr>
  884. <td><span class="xref">System.Int32</span></td>
  885. <td><span class="parametername">targetTop</span></td>
  886. <td></td>
  887. </tr>
  888. </tbody>
  889. </table>
  890. <a id="Terminal_Gui_FakeConsole_MoveBufferArea_" data-uid="Terminal.Gui.FakeConsole.MoveBufferArea*"></a>
  891. <h4 id="Terminal_Gui_FakeConsole_MoveBufferArea_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Char_System_ConsoleColor_System_ConsoleColor_" data-uid="Terminal.Gui.FakeConsole.MoveBufferArea(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Char,System.ConsoleColor,System.ConsoleColor)">MoveBufferArea(Int32, Int32, Int32, Int32, Int32, Int32, Char, ConsoleColor, ConsoleColor)</h4>
  892. <div class="markdown level1 summary">
  893. </div>
  894. <div class="markdown level1 conceptual"></div>
  895. <h5 class="decalaration">Declaration</h5>
  896. <div class="codewrapper">
  897. <pre><code class="lang-csharp hljs">public static void MoveBufferArea(int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop, char sourceChar, ConsoleColor sourceForeColor, ConsoleColor sourceBackColor)</code></pre>
  898. </div>
  899. <h5 class="parameters">Parameters</h5>
  900. <table class="table table-bordered table-striped table-condensed">
  901. <thead>
  902. <tr>
  903. <th>Type</th>
  904. <th>Name</th>
  905. <th>Description</th>
  906. </tr>
  907. </thead>
  908. <tbody>
  909. <tr>
  910. <td><span class="xref">System.Int32</span></td>
  911. <td><span class="parametername">sourceLeft</span></td>
  912. <td></td>
  913. </tr>
  914. <tr>
  915. <td><span class="xref">System.Int32</span></td>
  916. <td><span class="parametername">sourceTop</span></td>
  917. <td></td>
  918. </tr>
  919. <tr>
  920. <td><span class="xref">System.Int32</span></td>
  921. <td><span class="parametername">sourceWidth</span></td>
  922. <td></td>
  923. </tr>
  924. <tr>
  925. <td><span class="xref">System.Int32</span></td>
  926. <td><span class="parametername">sourceHeight</span></td>
  927. <td></td>
  928. </tr>
  929. <tr>
  930. <td><span class="xref">System.Int32</span></td>
  931. <td><span class="parametername">targetLeft</span></td>
  932. <td></td>
  933. </tr>
  934. <tr>
  935. <td><span class="xref">System.Int32</span></td>
  936. <td><span class="parametername">targetTop</span></td>
  937. <td></td>
  938. </tr>
  939. <tr>
  940. <td><span class="xref">System.Char</span></td>
  941. <td><span class="parametername">sourceChar</span></td>
  942. <td></td>
  943. </tr>
  944. <tr>
  945. <td><span class="xref">System.ConsoleColor</span></td>
  946. <td><span class="parametername">sourceForeColor</span></td>
  947. <td></td>
  948. </tr>
  949. <tr>
  950. <td><span class="xref">System.ConsoleColor</span></td>
  951. <td><span class="parametername">sourceBackColor</span></td>
  952. <td></td>
  953. </tr>
  954. </tbody>
  955. </table>
  956. <a id="Terminal_Gui_FakeConsole_OpenStandardError_" data-uid="Terminal.Gui.FakeConsole.OpenStandardError*"></a>
  957. <h4 id="Terminal_Gui_FakeConsole_OpenStandardError" data-uid="Terminal.Gui.FakeConsole.OpenStandardError">OpenStandardError()</h4>
  958. <div class="markdown level1 summary">
  959. </div>
  960. <div class="markdown level1 conceptual"></div>
  961. <h5 class="decalaration">Declaration</h5>
  962. <div class="codewrapper">
  963. <pre><code class="lang-csharp hljs">public static Stream OpenStandardError()</code></pre>
  964. </div>
  965. <h5 class="returns">Returns</h5>
  966. <table class="table table-bordered table-striped table-condensed">
  967. <thead>
  968. <tr>
  969. <th>Type</th>
  970. <th>Description</th>
  971. </tr>
  972. </thead>
  973. <tbody>
  974. <tr>
  975. <td><span class="xref">System.IO.Stream</span></td>
  976. <td></td>
  977. </tr>
  978. </tbody>
  979. </table>
  980. <a id="Terminal_Gui_FakeConsole_OpenStandardError_" data-uid="Terminal.Gui.FakeConsole.OpenStandardError*"></a>
  981. <h4 id="Terminal_Gui_FakeConsole_OpenStandardError_System_Int32_" data-uid="Terminal.Gui.FakeConsole.OpenStandardError(System.Int32)">OpenStandardError(Int32)</h4>
  982. <div class="markdown level1 summary">
  983. </div>
  984. <div class="markdown level1 conceptual"></div>
  985. <h5 class="decalaration">Declaration</h5>
  986. <div class="codewrapper">
  987. <pre><code class="lang-csharp hljs">public static Stream OpenStandardError(int bufferSize)</code></pre>
  988. </div>
  989. <h5 class="parameters">Parameters</h5>
  990. <table class="table table-bordered table-striped table-condensed">
  991. <thead>
  992. <tr>
  993. <th>Type</th>
  994. <th>Name</th>
  995. <th>Description</th>
  996. </tr>
  997. </thead>
  998. <tbody>
  999. <tr>
  1000. <td><span class="xref">System.Int32</span></td>
  1001. <td><span class="parametername">bufferSize</span></td>
  1002. <td></td>
  1003. </tr>
  1004. </tbody>
  1005. </table>
  1006. <h5 class="returns">Returns</h5>
  1007. <table class="table table-bordered table-striped table-condensed">
  1008. <thead>
  1009. <tr>
  1010. <th>Type</th>
  1011. <th>Description</th>
  1012. </tr>
  1013. </thead>
  1014. <tbody>
  1015. <tr>
  1016. <td><span class="xref">System.IO.Stream</span></td>
  1017. <td></td>
  1018. </tr>
  1019. </tbody>
  1020. </table>
  1021. <a id="Terminal_Gui_FakeConsole_OpenStandardInput_" data-uid="Terminal.Gui.FakeConsole.OpenStandardInput*"></a>
  1022. <h4 id="Terminal_Gui_FakeConsole_OpenStandardInput" data-uid="Terminal.Gui.FakeConsole.OpenStandardInput">OpenStandardInput()</h4>
  1023. <div class="markdown level1 summary">
  1024. </div>
  1025. <div class="markdown level1 conceptual"></div>
  1026. <h5 class="decalaration">Declaration</h5>
  1027. <div class="codewrapper">
  1028. <pre><code class="lang-csharp hljs">public static Stream OpenStandardInput()</code></pre>
  1029. </div>
  1030. <h5 class="returns">Returns</h5>
  1031. <table class="table table-bordered table-striped table-condensed">
  1032. <thead>
  1033. <tr>
  1034. <th>Type</th>
  1035. <th>Description</th>
  1036. </tr>
  1037. </thead>
  1038. <tbody>
  1039. <tr>
  1040. <td><span class="xref">System.IO.Stream</span></td>
  1041. <td></td>
  1042. </tr>
  1043. </tbody>
  1044. </table>
  1045. <a id="Terminal_Gui_FakeConsole_OpenStandardInput_" data-uid="Terminal.Gui.FakeConsole.OpenStandardInput*"></a>
  1046. <h4 id="Terminal_Gui_FakeConsole_OpenStandardInput_System_Int32_" data-uid="Terminal.Gui.FakeConsole.OpenStandardInput(System.Int32)">OpenStandardInput(Int32)</h4>
  1047. <div class="markdown level1 summary">
  1048. </div>
  1049. <div class="markdown level1 conceptual"></div>
  1050. <h5 class="decalaration">Declaration</h5>
  1051. <div class="codewrapper">
  1052. <pre><code class="lang-csharp hljs">public static Stream OpenStandardInput(int bufferSize)</code></pre>
  1053. </div>
  1054. <h5 class="parameters">Parameters</h5>
  1055. <table class="table table-bordered table-striped table-condensed">
  1056. <thead>
  1057. <tr>
  1058. <th>Type</th>
  1059. <th>Name</th>
  1060. <th>Description</th>
  1061. </tr>
  1062. </thead>
  1063. <tbody>
  1064. <tr>
  1065. <td><span class="xref">System.Int32</span></td>
  1066. <td><span class="parametername">bufferSize</span></td>
  1067. <td></td>
  1068. </tr>
  1069. </tbody>
  1070. </table>
  1071. <h5 class="returns">Returns</h5>
  1072. <table class="table table-bordered table-striped table-condensed">
  1073. <thead>
  1074. <tr>
  1075. <th>Type</th>
  1076. <th>Description</th>
  1077. </tr>
  1078. </thead>
  1079. <tbody>
  1080. <tr>
  1081. <td><span class="xref">System.IO.Stream</span></td>
  1082. <td></td>
  1083. </tr>
  1084. </tbody>
  1085. </table>
  1086. <a id="Terminal_Gui_FakeConsole_OpenStandardOutput_" data-uid="Terminal.Gui.FakeConsole.OpenStandardOutput*"></a>
  1087. <h4 id="Terminal_Gui_FakeConsole_OpenStandardOutput" data-uid="Terminal.Gui.FakeConsole.OpenStandardOutput">OpenStandardOutput()</h4>
  1088. <div class="markdown level1 summary">
  1089. </div>
  1090. <div class="markdown level1 conceptual"></div>
  1091. <h5 class="decalaration">Declaration</h5>
  1092. <div class="codewrapper">
  1093. <pre><code class="lang-csharp hljs">public static Stream OpenStandardOutput()</code></pre>
  1094. </div>
  1095. <h5 class="returns">Returns</h5>
  1096. <table class="table table-bordered table-striped table-condensed">
  1097. <thead>
  1098. <tr>
  1099. <th>Type</th>
  1100. <th>Description</th>
  1101. </tr>
  1102. </thead>
  1103. <tbody>
  1104. <tr>
  1105. <td><span class="xref">System.IO.Stream</span></td>
  1106. <td></td>
  1107. </tr>
  1108. </tbody>
  1109. </table>
  1110. <a id="Terminal_Gui_FakeConsole_OpenStandardOutput_" data-uid="Terminal.Gui.FakeConsole.OpenStandardOutput*"></a>
  1111. <h4 id="Terminal_Gui_FakeConsole_OpenStandardOutput_System_Int32_" data-uid="Terminal.Gui.FakeConsole.OpenStandardOutput(System.Int32)">OpenStandardOutput(Int32)</h4>
  1112. <div class="markdown level1 summary">
  1113. </div>
  1114. <div class="markdown level1 conceptual"></div>
  1115. <h5 class="decalaration">Declaration</h5>
  1116. <div class="codewrapper">
  1117. <pre><code class="lang-csharp hljs">public static Stream OpenStandardOutput(int bufferSize)</code></pre>
  1118. </div>
  1119. <h5 class="parameters">Parameters</h5>
  1120. <table class="table table-bordered table-striped table-condensed">
  1121. <thead>
  1122. <tr>
  1123. <th>Type</th>
  1124. <th>Name</th>
  1125. <th>Description</th>
  1126. </tr>
  1127. </thead>
  1128. <tbody>
  1129. <tr>
  1130. <td><span class="xref">System.Int32</span></td>
  1131. <td><span class="parametername">bufferSize</span></td>
  1132. <td></td>
  1133. </tr>
  1134. </tbody>
  1135. </table>
  1136. <h5 class="returns">Returns</h5>
  1137. <table class="table table-bordered table-striped table-condensed">
  1138. <thead>
  1139. <tr>
  1140. <th>Type</th>
  1141. <th>Description</th>
  1142. </tr>
  1143. </thead>
  1144. <tbody>
  1145. <tr>
  1146. <td><span class="xref">System.IO.Stream</span></td>
  1147. <td></td>
  1148. </tr>
  1149. </tbody>
  1150. </table>
  1151. <a id="Terminal_Gui_FakeConsole_Read_" data-uid="Terminal.Gui.FakeConsole.Read*"></a>
  1152. <h4 id="Terminal_Gui_FakeConsole_Read" data-uid="Terminal.Gui.FakeConsole.Read">Read()</h4>
  1153. <div class="markdown level1 summary">
  1154. </div>
  1155. <div class="markdown level1 conceptual"></div>
  1156. <h5 class="decalaration">Declaration</h5>
  1157. <div class="codewrapper">
  1158. <pre><code class="lang-csharp hljs">public static int Read()</code></pre>
  1159. </div>
  1160. <h5 class="returns">Returns</h5>
  1161. <table class="table table-bordered table-striped table-condensed">
  1162. <thead>
  1163. <tr>
  1164. <th>Type</th>
  1165. <th>Description</th>
  1166. </tr>
  1167. </thead>
  1168. <tbody>
  1169. <tr>
  1170. <td><span class="xref">System.Int32</span></td>
  1171. <td></td>
  1172. </tr>
  1173. </tbody>
  1174. </table>
  1175. <a id="Terminal_Gui_FakeConsole_ReadKey_" data-uid="Terminal.Gui.FakeConsole.ReadKey*"></a>
  1176. <h4 id="Terminal_Gui_FakeConsole_ReadKey" data-uid="Terminal.Gui.FakeConsole.ReadKey">ReadKey()</h4>
  1177. <div class="markdown level1 summary">
  1178. </div>
  1179. <div class="markdown level1 conceptual"></div>
  1180. <h5 class="decalaration">Declaration</h5>
  1181. <div class="codewrapper">
  1182. <pre><code class="lang-csharp hljs">public static ConsoleKeyInfo ReadKey()</code></pre>
  1183. </div>
  1184. <h5 class="returns">Returns</h5>
  1185. <table class="table table-bordered table-striped table-condensed">
  1186. <thead>
  1187. <tr>
  1188. <th>Type</th>
  1189. <th>Description</th>
  1190. </tr>
  1191. </thead>
  1192. <tbody>
  1193. <tr>
  1194. <td><span class="xref">System.ConsoleKeyInfo</span></td>
  1195. <td></td>
  1196. </tr>
  1197. </tbody>
  1198. </table>
  1199. <a id="Terminal_Gui_FakeConsole_ReadKey_" data-uid="Terminal.Gui.FakeConsole.ReadKey*"></a>
  1200. <h4 id="Terminal_Gui_FakeConsole_ReadKey_System_Boolean_" data-uid="Terminal.Gui.FakeConsole.ReadKey(System.Boolean)">ReadKey(Boolean)</h4>
  1201. <div class="markdown level1 summary">
  1202. </div>
  1203. <div class="markdown level1 conceptual"></div>
  1204. <h5 class="decalaration">Declaration</h5>
  1205. <div class="codewrapper">
  1206. <pre><code class="lang-csharp hljs">public static ConsoleKeyInfo ReadKey(bool intercept)</code></pre>
  1207. </div>
  1208. <h5 class="parameters">Parameters</h5>
  1209. <table class="table table-bordered table-striped table-condensed">
  1210. <thead>
  1211. <tr>
  1212. <th>Type</th>
  1213. <th>Name</th>
  1214. <th>Description</th>
  1215. </tr>
  1216. </thead>
  1217. <tbody>
  1218. <tr>
  1219. <td><span class="xref">System.Boolean</span></td>
  1220. <td><span class="parametername">intercept</span></td>
  1221. <td></td>
  1222. </tr>
  1223. </tbody>
  1224. </table>
  1225. <h5 class="returns">Returns</h5>
  1226. <table class="table table-bordered table-striped table-condensed">
  1227. <thead>
  1228. <tr>
  1229. <th>Type</th>
  1230. <th>Description</th>
  1231. </tr>
  1232. </thead>
  1233. <tbody>
  1234. <tr>
  1235. <td><span class="xref">System.ConsoleKeyInfo</span></td>
  1236. <td></td>
  1237. </tr>
  1238. </tbody>
  1239. </table>
  1240. <a id="Terminal_Gui_FakeConsole_ReadLine_" data-uid="Terminal.Gui.FakeConsole.ReadLine*"></a>
  1241. <h4 id="Terminal_Gui_FakeConsole_ReadLine" data-uid="Terminal.Gui.FakeConsole.ReadLine">ReadLine()</h4>
  1242. <div class="markdown level1 summary">
  1243. </div>
  1244. <div class="markdown level1 conceptual"></div>
  1245. <h5 class="decalaration">Declaration</h5>
  1246. <div class="codewrapper">
  1247. <pre><code class="lang-csharp hljs">public static string ReadLine()</code></pre>
  1248. </div>
  1249. <h5 class="returns">Returns</h5>
  1250. <table class="table table-bordered table-striped table-condensed">
  1251. <thead>
  1252. <tr>
  1253. <th>Type</th>
  1254. <th>Description</th>
  1255. </tr>
  1256. </thead>
  1257. <tbody>
  1258. <tr>
  1259. <td><span class="xref">System.String</span></td>
  1260. <td></td>
  1261. </tr>
  1262. </tbody>
  1263. </table>
  1264. <a id="Terminal_Gui_FakeConsole_ResetColor_" data-uid="Terminal.Gui.FakeConsole.ResetColor*"></a>
  1265. <h4 id="Terminal_Gui_FakeConsole_ResetColor" data-uid="Terminal.Gui.FakeConsole.ResetColor">ResetColor()</h4>
  1266. <div class="markdown level1 summary">
  1267. </div>
  1268. <div class="markdown level1 conceptual"></div>
  1269. <h5 class="decalaration">Declaration</h5>
  1270. <div class="codewrapper">
  1271. <pre><code class="lang-csharp hljs">public static void ResetColor()</code></pre>
  1272. </div>
  1273. <a id="Terminal_Gui_FakeConsole_SetBufferSize_" data-uid="Terminal.Gui.FakeConsole.SetBufferSize*"></a>
  1274. <h4 id="Terminal_Gui_FakeConsole_SetBufferSize_System_Int32_System_Int32_" data-uid="Terminal.Gui.FakeConsole.SetBufferSize(System.Int32,System.Int32)">SetBufferSize(Int32, Int32)</h4>
  1275. <div class="markdown level1 summary">
  1276. </div>
  1277. <div class="markdown level1 conceptual"></div>
  1278. <h5 class="decalaration">Declaration</h5>
  1279. <div class="codewrapper">
  1280. <pre><code class="lang-csharp hljs">public static void SetBufferSize(int width, int height)</code></pre>
  1281. </div>
  1282. <h5 class="parameters">Parameters</h5>
  1283. <table class="table table-bordered table-striped table-condensed">
  1284. <thead>
  1285. <tr>
  1286. <th>Type</th>
  1287. <th>Name</th>
  1288. <th>Description</th>
  1289. </tr>
  1290. </thead>
  1291. <tbody>
  1292. <tr>
  1293. <td><span class="xref">System.Int32</span></td>
  1294. <td><span class="parametername">width</span></td>
  1295. <td></td>
  1296. </tr>
  1297. <tr>
  1298. <td><span class="xref">System.Int32</span></td>
  1299. <td><span class="parametername">height</span></td>
  1300. <td></td>
  1301. </tr>
  1302. </tbody>
  1303. </table>
  1304. <a id="Terminal_Gui_FakeConsole_SetCursorPosition_" data-uid="Terminal.Gui.FakeConsole.SetCursorPosition*"></a>
  1305. <h4 id="Terminal_Gui_FakeConsole_SetCursorPosition_System_Int32_System_Int32_" data-uid="Terminal.Gui.FakeConsole.SetCursorPosition(System.Int32,System.Int32)">SetCursorPosition(Int32, Int32)</h4>
  1306. <div class="markdown level1 summary">
  1307. </div>
  1308. <div class="markdown level1 conceptual"></div>
  1309. <h5 class="decalaration">Declaration</h5>
  1310. <div class="codewrapper">
  1311. <pre><code class="lang-csharp hljs">public static void SetCursorPosition(int left, int top)</code></pre>
  1312. </div>
  1313. <h5 class="parameters">Parameters</h5>
  1314. <table class="table table-bordered table-striped table-condensed">
  1315. <thead>
  1316. <tr>
  1317. <th>Type</th>
  1318. <th>Name</th>
  1319. <th>Description</th>
  1320. </tr>
  1321. </thead>
  1322. <tbody>
  1323. <tr>
  1324. <td><span class="xref">System.Int32</span></td>
  1325. <td><span class="parametername">left</span></td>
  1326. <td></td>
  1327. </tr>
  1328. <tr>
  1329. <td><span class="xref">System.Int32</span></td>
  1330. <td><span class="parametername">top</span></td>
  1331. <td></td>
  1332. </tr>
  1333. </tbody>
  1334. </table>
  1335. <a id="Terminal_Gui_FakeConsole_SetError_" data-uid="Terminal.Gui.FakeConsole.SetError*"></a>
  1336. <h4 id="Terminal_Gui_FakeConsole_SetError_System_IO_TextWriter_" data-uid="Terminal.Gui.FakeConsole.SetError(System.IO.TextWriter)">SetError(TextWriter)</h4>
  1337. <div class="markdown level1 summary">
  1338. </div>
  1339. <div class="markdown level1 conceptual"></div>
  1340. <h5 class="decalaration">Declaration</h5>
  1341. <div class="codewrapper">
  1342. <pre><code class="lang-csharp hljs">public static void SetError(TextWriter newError)</code></pre>
  1343. </div>
  1344. <h5 class="parameters">Parameters</h5>
  1345. <table class="table table-bordered table-striped table-condensed">
  1346. <thead>
  1347. <tr>
  1348. <th>Type</th>
  1349. <th>Name</th>
  1350. <th>Description</th>
  1351. </tr>
  1352. </thead>
  1353. <tbody>
  1354. <tr>
  1355. <td><span class="xref">System.IO.TextWriter</span></td>
  1356. <td><span class="parametername">newError</span></td>
  1357. <td></td>
  1358. </tr>
  1359. </tbody>
  1360. </table>
  1361. <a id="Terminal_Gui_FakeConsole_SetIn_" data-uid="Terminal.Gui.FakeConsole.SetIn*"></a>
  1362. <h4 id="Terminal_Gui_FakeConsole_SetIn_System_IO_TextReader_" data-uid="Terminal.Gui.FakeConsole.SetIn(System.IO.TextReader)">SetIn(TextReader)</h4>
  1363. <div class="markdown level1 summary">
  1364. </div>
  1365. <div class="markdown level1 conceptual"></div>
  1366. <h5 class="decalaration">Declaration</h5>
  1367. <div class="codewrapper">
  1368. <pre><code class="lang-csharp hljs">public static void SetIn(TextReader newIn)</code></pre>
  1369. </div>
  1370. <h5 class="parameters">Parameters</h5>
  1371. <table class="table table-bordered table-striped table-condensed">
  1372. <thead>
  1373. <tr>
  1374. <th>Type</th>
  1375. <th>Name</th>
  1376. <th>Description</th>
  1377. </tr>
  1378. </thead>
  1379. <tbody>
  1380. <tr>
  1381. <td><span class="xref">System.IO.TextReader</span></td>
  1382. <td><span class="parametername">newIn</span></td>
  1383. <td></td>
  1384. </tr>
  1385. </tbody>
  1386. </table>
  1387. <a id="Terminal_Gui_FakeConsole_SetOut_" data-uid="Terminal.Gui.FakeConsole.SetOut*"></a>
  1388. <h4 id="Terminal_Gui_FakeConsole_SetOut_System_IO_TextWriter_" data-uid="Terminal.Gui.FakeConsole.SetOut(System.IO.TextWriter)">SetOut(TextWriter)</h4>
  1389. <div class="markdown level1 summary">
  1390. </div>
  1391. <div class="markdown level1 conceptual"></div>
  1392. <h5 class="decalaration">Declaration</h5>
  1393. <div class="codewrapper">
  1394. <pre><code class="lang-csharp hljs">public static void SetOut(TextWriter newOut)</code></pre>
  1395. </div>
  1396. <h5 class="parameters">Parameters</h5>
  1397. <table class="table table-bordered table-striped table-condensed">
  1398. <thead>
  1399. <tr>
  1400. <th>Type</th>
  1401. <th>Name</th>
  1402. <th>Description</th>
  1403. </tr>
  1404. </thead>
  1405. <tbody>
  1406. <tr>
  1407. <td><span class="xref">System.IO.TextWriter</span></td>
  1408. <td><span class="parametername">newOut</span></td>
  1409. <td></td>
  1410. </tr>
  1411. </tbody>
  1412. </table>
  1413. <a id="Terminal_Gui_FakeConsole_SetWindowPosition_" data-uid="Terminal.Gui.FakeConsole.SetWindowPosition*"></a>
  1414. <h4 id="Terminal_Gui_FakeConsole_SetWindowPosition_System_Int32_System_Int32_" data-uid="Terminal.Gui.FakeConsole.SetWindowPosition(System.Int32,System.Int32)">SetWindowPosition(Int32, Int32)</h4>
  1415. <div class="markdown level1 summary">
  1416. </div>
  1417. <div class="markdown level1 conceptual"></div>
  1418. <h5 class="decalaration">Declaration</h5>
  1419. <div class="codewrapper">
  1420. <pre><code class="lang-csharp hljs">public static void SetWindowPosition(int left, int top)</code></pre>
  1421. </div>
  1422. <h5 class="parameters">Parameters</h5>
  1423. <table class="table table-bordered table-striped table-condensed">
  1424. <thead>
  1425. <tr>
  1426. <th>Type</th>
  1427. <th>Name</th>
  1428. <th>Description</th>
  1429. </tr>
  1430. </thead>
  1431. <tbody>
  1432. <tr>
  1433. <td><span class="xref">System.Int32</span></td>
  1434. <td><span class="parametername">left</span></td>
  1435. <td></td>
  1436. </tr>
  1437. <tr>
  1438. <td><span class="xref">System.Int32</span></td>
  1439. <td><span class="parametername">top</span></td>
  1440. <td></td>
  1441. </tr>
  1442. </tbody>
  1443. </table>
  1444. <a id="Terminal_Gui_FakeConsole_SetWindowSize_" data-uid="Terminal.Gui.FakeConsole.SetWindowSize*"></a>
  1445. <h4 id="Terminal_Gui_FakeConsole_SetWindowSize_System_Int32_System_Int32_" data-uid="Terminal.Gui.FakeConsole.SetWindowSize(System.Int32,System.Int32)">SetWindowSize(Int32, Int32)</h4>
  1446. <div class="markdown level1 summary">
  1447. </div>
  1448. <div class="markdown level1 conceptual"></div>
  1449. <h5 class="decalaration">Declaration</h5>
  1450. <div class="codewrapper">
  1451. <pre><code class="lang-csharp hljs">public static void SetWindowSize(int width, int height)</code></pre>
  1452. </div>
  1453. <h5 class="parameters">Parameters</h5>
  1454. <table class="table table-bordered table-striped table-condensed">
  1455. <thead>
  1456. <tr>
  1457. <th>Type</th>
  1458. <th>Name</th>
  1459. <th>Description</th>
  1460. </tr>
  1461. </thead>
  1462. <tbody>
  1463. <tr>
  1464. <td><span class="xref">System.Int32</span></td>
  1465. <td><span class="parametername">width</span></td>
  1466. <td></td>
  1467. </tr>
  1468. <tr>
  1469. <td><span class="xref">System.Int32</span></td>
  1470. <td><span class="parametername">height</span></td>
  1471. <td></td>
  1472. </tr>
  1473. </tbody>
  1474. </table>
  1475. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1476. <h4 id="Terminal_Gui_FakeConsole_Write_System_Boolean_" data-uid="Terminal.Gui.FakeConsole.Write(System.Boolean)">Write(Boolean)</h4>
  1477. <div class="markdown level1 summary">
  1478. </div>
  1479. <div class="markdown level1 conceptual"></div>
  1480. <h5 class="decalaration">Declaration</h5>
  1481. <div class="codewrapper">
  1482. <pre><code class="lang-csharp hljs">public static void Write(bool value)</code></pre>
  1483. </div>
  1484. <h5 class="parameters">Parameters</h5>
  1485. <table class="table table-bordered table-striped table-condensed">
  1486. <thead>
  1487. <tr>
  1488. <th>Type</th>
  1489. <th>Name</th>
  1490. <th>Description</th>
  1491. </tr>
  1492. </thead>
  1493. <tbody>
  1494. <tr>
  1495. <td><span class="xref">System.Boolean</span></td>
  1496. <td><span class="parametername">value</span></td>
  1497. <td></td>
  1498. </tr>
  1499. </tbody>
  1500. </table>
  1501. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1502. <h4 id="Terminal_Gui_FakeConsole_Write_System_Char_" data-uid="Terminal.Gui.FakeConsole.Write(System.Char)">Write(Char)</h4>
  1503. <div class="markdown level1 summary">
  1504. </div>
  1505. <div class="markdown level1 conceptual"></div>
  1506. <h5 class="decalaration">Declaration</h5>
  1507. <div class="codewrapper">
  1508. <pre><code class="lang-csharp hljs">public static void Write(char value)</code></pre>
  1509. </div>
  1510. <h5 class="parameters">Parameters</h5>
  1511. <table class="table table-bordered table-striped table-condensed">
  1512. <thead>
  1513. <tr>
  1514. <th>Type</th>
  1515. <th>Name</th>
  1516. <th>Description</th>
  1517. </tr>
  1518. </thead>
  1519. <tbody>
  1520. <tr>
  1521. <td><span class="xref">System.Char</span></td>
  1522. <td><span class="parametername">value</span></td>
  1523. <td></td>
  1524. </tr>
  1525. </tbody>
  1526. </table>
  1527. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1528. <h4 id="Terminal_Gui_FakeConsole_Write_System_Char___" data-uid="Terminal.Gui.FakeConsole.Write(System.Char[])">Write(Char[])</h4>
  1529. <div class="markdown level1 summary">
  1530. </div>
  1531. <div class="markdown level1 conceptual"></div>
  1532. <h5 class="decalaration">Declaration</h5>
  1533. <div class="codewrapper">
  1534. <pre><code class="lang-csharp hljs">public static void Write(char[] buffer)</code></pre>
  1535. </div>
  1536. <h5 class="parameters">Parameters</h5>
  1537. <table class="table table-bordered table-striped table-condensed">
  1538. <thead>
  1539. <tr>
  1540. <th>Type</th>
  1541. <th>Name</th>
  1542. <th>Description</th>
  1543. </tr>
  1544. </thead>
  1545. <tbody>
  1546. <tr>
  1547. <td><span class="xref">System.Char</span>[]</td>
  1548. <td><span class="parametername">buffer</span></td>
  1549. <td></td>
  1550. </tr>
  1551. </tbody>
  1552. </table>
  1553. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1554. <h4 id="Terminal_Gui_FakeConsole_Write_System_Char___System_Int32_System_Int32_" data-uid="Terminal.Gui.FakeConsole.Write(System.Char[],System.Int32,System.Int32)">Write(Char[], Int32, Int32)</h4>
  1555. <div class="markdown level1 summary">
  1556. </div>
  1557. <div class="markdown level1 conceptual"></div>
  1558. <h5 class="decalaration">Declaration</h5>
  1559. <div class="codewrapper">
  1560. <pre><code class="lang-csharp hljs">public static void Write(char[] buffer, int index, int count)</code></pre>
  1561. </div>
  1562. <h5 class="parameters">Parameters</h5>
  1563. <table class="table table-bordered table-striped table-condensed">
  1564. <thead>
  1565. <tr>
  1566. <th>Type</th>
  1567. <th>Name</th>
  1568. <th>Description</th>
  1569. </tr>
  1570. </thead>
  1571. <tbody>
  1572. <tr>
  1573. <td><span class="xref">System.Char</span>[]</td>
  1574. <td><span class="parametername">buffer</span></td>
  1575. <td></td>
  1576. </tr>
  1577. <tr>
  1578. <td><span class="xref">System.Int32</span></td>
  1579. <td><span class="parametername">index</span></td>
  1580. <td></td>
  1581. </tr>
  1582. <tr>
  1583. <td><span class="xref">System.Int32</span></td>
  1584. <td><span class="parametername">count</span></td>
  1585. <td></td>
  1586. </tr>
  1587. </tbody>
  1588. </table>
  1589. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1590. <h4 id="Terminal_Gui_FakeConsole_Write_System_Decimal_" data-uid="Terminal.Gui.FakeConsole.Write(System.Decimal)">Write(Decimal)</h4>
  1591. <div class="markdown level1 summary">
  1592. </div>
  1593. <div class="markdown level1 conceptual"></div>
  1594. <h5 class="decalaration">Declaration</h5>
  1595. <div class="codewrapper">
  1596. <pre><code class="lang-csharp hljs">public static void Write(decimal value)</code></pre>
  1597. </div>
  1598. <h5 class="parameters">Parameters</h5>
  1599. <table class="table table-bordered table-striped table-condensed">
  1600. <thead>
  1601. <tr>
  1602. <th>Type</th>
  1603. <th>Name</th>
  1604. <th>Description</th>
  1605. </tr>
  1606. </thead>
  1607. <tbody>
  1608. <tr>
  1609. <td><span class="xref">System.Decimal</span></td>
  1610. <td><span class="parametername">value</span></td>
  1611. <td></td>
  1612. </tr>
  1613. </tbody>
  1614. </table>
  1615. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1616. <h4 id="Terminal_Gui_FakeConsole_Write_System_Double_" data-uid="Terminal.Gui.FakeConsole.Write(System.Double)">Write(Double)</h4>
  1617. <div class="markdown level1 summary">
  1618. </div>
  1619. <div class="markdown level1 conceptual"></div>
  1620. <h5 class="decalaration">Declaration</h5>
  1621. <div class="codewrapper">
  1622. <pre><code class="lang-csharp hljs">public static void Write(double value)</code></pre>
  1623. </div>
  1624. <h5 class="parameters">Parameters</h5>
  1625. <table class="table table-bordered table-striped table-condensed">
  1626. <thead>
  1627. <tr>
  1628. <th>Type</th>
  1629. <th>Name</th>
  1630. <th>Description</th>
  1631. </tr>
  1632. </thead>
  1633. <tbody>
  1634. <tr>
  1635. <td><span class="xref">System.Double</span></td>
  1636. <td><span class="parametername">value</span></td>
  1637. <td></td>
  1638. </tr>
  1639. </tbody>
  1640. </table>
  1641. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1642. <h4 id="Terminal_Gui_FakeConsole_Write_System_Int32_" data-uid="Terminal.Gui.FakeConsole.Write(System.Int32)">Write(Int32)</h4>
  1643. <div class="markdown level1 summary">
  1644. </div>
  1645. <div class="markdown level1 conceptual"></div>
  1646. <h5 class="decalaration">Declaration</h5>
  1647. <div class="codewrapper">
  1648. <pre><code class="lang-csharp hljs">public static void Write(int value)</code></pre>
  1649. </div>
  1650. <h5 class="parameters">Parameters</h5>
  1651. <table class="table table-bordered table-striped table-condensed">
  1652. <thead>
  1653. <tr>
  1654. <th>Type</th>
  1655. <th>Name</th>
  1656. <th>Description</th>
  1657. </tr>
  1658. </thead>
  1659. <tbody>
  1660. <tr>
  1661. <td><span class="xref">System.Int32</span></td>
  1662. <td><span class="parametername">value</span></td>
  1663. <td></td>
  1664. </tr>
  1665. </tbody>
  1666. </table>
  1667. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1668. <h4 id="Terminal_Gui_FakeConsole_Write_System_Int64_" data-uid="Terminal.Gui.FakeConsole.Write(System.Int64)">Write(Int64)</h4>
  1669. <div class="markdown level1 summary">
  1670. </div>
  1671. <div class="markdown level1 conceptual"></div>
  1672. <h5 class="decalaration">Declaration</h5>
  1673. <div class="codewrapper">
  1674. <pre><code class="lang-csharp hljs">public static void Write(long value)</code></pre>
  1675. </div>
  1676. <h5 class="parameters">Parameters</h5>
  1677. <table class="table table-bordered table-striped table-condensed">
  1678. <thead>
  1679. <tr>
  1680. <th>Type</th>
  1681. <th>Name</th>
  1682. <th>Description</th>
  1683. </tr>
  1684. </thead>
  1685. <tbody>
  1686. <tr>
  1687. <td><span class="xref">System.Int64</span></td>
  1688. <td><span class="parametername">value</span></td>
  1689. <td></td>
  1690. </tr>
  1691. </tbody>
  1692. </table>
  1693. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1694. <h4 id="Terminal_Gui_FakeConsole_Write_System_Object_" data-uid="Terminal.Gui.FakeConsole.Write(System.Object)">Write(Object)</h4>
  1695. <div class="markdown level1 summary">
  1696. </div>
  1697. <div class="markdown level1 conceptual"></div>
  1698. <h5 class="decalaration">Declaration</h5>
  1699. <div class="codewrapper">
  1700. <pre><code class="lang-csharp hljs">public static void Write(object value)</code></pre>
  1701. </div>
  1702. <h5 class="parameters">Parameters</h5>
  1703. <table class="table table-bordered table-striped table-condensed">
  1704. <thead>
  1705. <tr>
  1706. <th>Type</th>
  1707. <th>Name</th>
  1708. <th>Description</th>
  1709. </tr>
  1710. </thead>
  1711. <tbody>
  1712. <tr>
  1713. <td><span class="xref">System.Object</span></td>
  1714. <td><span class="parametername">value</span></td>
  1715. <td></td>
  1716. </tr>
  1717. </tbody>
  1718. </table>
  1719. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1720. <h4 id="Terminal_Gui_FakeConsole_Write_System_Single_" data-uid="Terminal.Gui.FakeConsole.Write(System.Single)">Write(Single)</h4>
  1721. <div class="markdown level1 summary">
  1722. </div>
  1723. <div class="markdown level1 conceptual"></div>
  1724. <h5 class="decalaration">Declaration</h5>
  1725. <div class="codewrapper">
  1726. <pre><code class="lang-csharp hljs">public static void Write(float value)</code></pre>
  1727. </div>
  1728. <h5 class="parameters">Parameters</h5>
  1729. <table class="table table-bordered table-striped table-condensed">
  1730. <thead>
  1731. <tr>
  1732. <th>Type</th>
  1733. <th>Name</th>
  1734. <th>Description</th>
  1735. </tr>
  1736. </thead>
  1737. <tbody>
  1738. <tr>
  1739. <td><span class="xref">System.Single</span></td>
  1740. <td><span class="parametername">value</span></td>
  1741. <td></td>
  1742. </tr>
  1743. </tbody>
  1744. </table>
  1745. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1746. <h4 id="Terminal_Gui_FakeConsole_Write_System_String_" data-uid="Terminal.Gui.FakeConsole.Write(System.String)">Write(String)</h4>
  1747. <div class="markdown level1 summary">
  1748. </div>
  1749. <div class="markdown level1 conceptual"></div>
  1750. <h5 class="decalaration">Declaration</h5>
  1751. <div class="codewrapper">
  1752. <pre><code class="lang-csharp hljs">public static void Write(string value)</code></pre>
  1753. </div>
  1754. <h5 class="parameters">Parameters</h5>
  1755. <table class="table table-bordered table-striped table-condensed">
  1756. <thead>
  1757. <tr>
  1758. <th>Type</th>
  1759. <th>Name</th>
  1760. <th>Description</th>
  1761. </tr>
  1762. </thead>
  1763. <tbody>
  1764. <tr>
  1765. <td><span class="xref">System.String</span></td>
  1766. <td><span class="parametername">value</span></td>
  1767. <td></td>
  1768. </tr>
  1769. </tbody>
  1770. </table>
  1771. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1772. <h4 id="Terminal_Gui_FakeConsole_Write_System_String_System_Object_" data-uid="Terminal.Gui.FakeConsole.Write(System.String,System.Object)">Write(String, Object)</h4>
  1773. <div class="markdown level1 summary">
  1774. </div>
  1775. <div class="markdown level1 conceptual"></div>
  1776. <h5 class="decalaration">Declaration</h5>
  1777. <div class="codewrapper">
  1778. <pre><code class="lang-csharp hljs">public static void Write(string format, object arg0)</code></pre>
  1779. </div>
  1780. <h5 class="parameters">Parameters</h5>
  1781. <table class="table table-bordered table-striped table-condensed">
  1782. <thead>
  1783. <tr>
  1784. <th>Type</th>
  1785. <th>Name</th>
  1786. <th>Description</th>
  1787. </tr>
  1788. </thead>
  1789. <tbody>
  1790. <tr>
  1791. <td><span class="xref">System.String</span></td>
  1792. <td><span class="parametername">format</span></td>
  1793. <td></td>
  1794. </tr>
  1795. <tr>
  1796. <td><span class="xref">System.Object</span></td>
  1797. <td><span class="parametername">arg0</span></td>
  1798. <td></td>
  1799. </tr>
  1800. </tbody>
  1801. </table>
  1802. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1803. <h4 id="Terminal_Gui_FakeConsole_Write_System_String_System_Object_System_Object_" data-uid="Terminal.Gui.FakeConsole.Write(System.String,System.Object,System.Object)">Write(String, Object, Object)</h4>
  1804. <div class="markdown level1 summary">
  1805. </div>
  1806. <div class="markdown level1 conceptual"></div>
  1807. <h5 class="decalaration">Declaration</h5>
  1808. <div class="codewrapper">
  1809. <pre><code class="lang-csharp hljs">public static void Write(string format, object arg0, object arg1)</code></pre>
  1810. </div>
  1811. <h5 class="parameters">Parameters</h5>
  1812. <table class="table table-bordered table-striped table-condensed">
  1813. <thead>
  1814. <tr>
  1815. <th>Type</th>
  1816. <th>Name</th>
  1817. <th>Description</th>
  1818. </tr>
  1819. </thead>
  1820. <tbody>
  1821. <tr>
  1822. <td><span class="xref">System.String</span></td>
  1823. <td><span class="parametername">format</span></td>
  1824. <td></td>
  1825. </tr>
  1826. <tr>
  1827. <td><span class="xref">System.Object</span></td>
  1828. <td><span class="parametername">arg0</span></td>
  1829. <td></td>
  1830. </tr>
  1831. <tr>
  1832. <td><span class="xref">System.Object</span></td>
  1833. <td><span class="parametername">arg1</span></td>
  1834. <td></td>
  1835. </tr>
  1836. </tbody>
  1837. </table>
  1838. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1839. <h4 id="Terminal_Gui_FakeConsole_Write_System_String_System_Object_System_Object_System_Object_" data-uid="Terminal.Gui.FakeConsole.Write(System.String,System.Object,System.Object,System.Object)">Write(String, Object, Object, Object)</h4>
  1840. <div class="markdown level1 summary">
  1841. </div>
  1842. <div class="markdown level1 conceptual"></div>
  1843. <h5 class="decalaration">Declaration</h5>
  1844. <div class="codewrapper">
  1845. <pre><code class="lang-csharp hljs">public static void Write(string format, object arg0, object arg1, object arg2)</code></pre>
  1846. </div>
  1847. <h5 class="parameters">Parameters</h5>
  1848. <table class="table table-bordered table-striped table-condensed">
  1849. <thead>
  1850. <tr>
  1851. <th>Type</th>
  1852. <th>Name</th>
  1853. <th>Description</th>
  1854. </tr>
  1855. </thead>
  1856. <tbody>
  1857. <tr>
  1858. <td><span class="xref">System.String</span></td>
  1859. <td><span class="parametername">format</span></td>
  1860. <td></td>
  1861. </tr>
  1862. <tr>
  1863. <td><span class="xref">System.Object</span></td>
  1864. <td><span class="parametername">arg0</span></td>
  1865. <td></td>
  1866. </tr>
  1867. <tr>
  1868. <td><span class="xref">System.Object</span></td>
  1869. <td><span class="parametername">arg1</span></td>
  1870. <td></td>
  1871. </tr>
  1872. <tr>
  1873. <td><span class="xref">System.Object</span></td>
  1874. <td><span class="parametername">arg2</span></td>
  1875. <td></td>
  1876. </tr>
  1877. </tbody>
  1878. </table>
  1879. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1880. <h4 id="Terminal_Gui_FakeConsole_Write_System_String_System_Object_System_Object_System_Object_System_Object_" data-uid="Terminal.Gui.FakeConsole.Write(System.String,System.Object,System.Object,System.Object,System.Object)">Write(String, Object, Object, Object, Object)</h4>
  1881. <div class="markdown level1 summary">
  1882. </div>
  1883. <div class="markdown level1 conceptual"></div>
  1884. <h5 class="decalaration">Declaration</h5>
  1885. <div class="codewrapper">
  1886. <pre><code class="lang-csharp hljs">public static void Write(string format, object arg0, object arg1, object arg2, object arg3)</code></pre>
  1887. </div>
  1888. <h5 class="parameters">Parameters</h5>
  1889. <table class="table table-bordered table-striped table-condensed">
  1890. <thead>
  1891. <tr>
  1892. <th>Type</th>
  1893. <th>Name</th>
  1894. <th>Description</th>
  1895. </tr>
  1896. </thead>
  1897. <tbody>
  1898. <tr>
  1899. <td><span class="xref">System.String</span></td>
  1900. <td><span class="parametername">format</span></td>
  1901. <td></td>
  1902. </tr>
  1903. <tr>
  1904. <td><span class="xref">System.Object</span></td>
  1905. <td><span class="parametername">arg0</span></td>
  1906. <td></td>
  1907. </tr>
  1908. <tr>
  1909. <td><span class="xref">System.Object</span></td>
  1910. <td><span class="parametername">arg1</span></td>
  1911. <td></td>
  1912. </tr>
  1913. <tr>
  1914. <td><span class="xref">System.Object</span></td>
  1915. <td><span class="parametername">arg2</span></td>
  1916. <td></td>
  1917. </tr>
  1918. <tr>
  1919. <td><span class="xref">System.Object</span></td>
  1920. <td><span class="parametername">arg3</span></td>
  1921. <td></td>
  1922. </tr>
  1923. </tbody>
  1924. </table>
  1925. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1926. <h4 id="Terminal_Gui_FakeConsole_Write_System_String_System_Object___" data-uid="Terminal.Gui.FakeConsole.Write(System.String,System.Object[])">Write(String, Object[])</h4>
  1927. <div class="markdown level1 summary">
  1928. </div>
  1929. <div class="markdown level1 conceptual"></div>
  1930. <h5 class="decalaration">Declaration</h5>
  1931. <div class="codewrapper">
  1932. <pre><code class="lang-csharp hljs">public static void Write(string format, params object[] arg)</code></pre>
  1933. </div>
  1934. <h5 class="parameters">Parameters</h5>
  1935. <table class="table table-bordered table-striped table-condensed">
  1936. <thead>
  1937. <tr>
  1938. <th>Type</th>
  1939. <th>Name</th>
  1940. <th>Description</th>
  1941. </tr>
  1942. </thead>
  1943. <tbody>
  1944. <tr>
  1945. <td><span class="xref">System.String</span></td>
  1946. <td><span class="parametername">format</span></td>
  1947. <td></td>
  1948. </tr>
  1949. <tr>
  1950. <td><span class="xref">System.Object</span>[]</td>
  1951. <td><span class="parametername">arg</span></td>
  1952. <td></td>
  1953. </tr>
  1954. </tbody>
  1955. </table>
  1956. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1957. <h4 id="Terminal_Gui_FakeConsole_Write_System_UInt32_" data-uid="Terminal.Gui.FakeConsole.Write(System.UInt32)">Write(UInt32)</h4>
  1958. <div class="markdown level1 summary">
  1959. </div>
  1960. <div class="markdown level1 conceptual"></div>
  1961. <h5 class="decalaration">Declaration</h5>
  1962. <div class="codewrapper">
  1963. <pre><code class="lang-csharp hljs">public static void Write(uint value)</code></pre>
  1964. </div>
  1965. <h5 class="parameters">Parameters</h5>
  1966. <table class="table table-bordered table-striped table-condensed">
  1967. <thead>
  1968. <tr>
  1969. <th>Type</th>
  1970. <th>Name</th>
  1971. <th>Description</th>
  1972. </tr>
  1973. </thead>
  1974. <tbody>
  1975. <tr>
  1976. <td><span class="xref">System.UInt32</span></td>
  1977. <td><span class="parametername">value</span></td>
  1978. <td></td>
  1979. </tr>
  1980. </tbody>
  1981. </table>
  1982. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1983. <h4 id="Terminal_Gui_FakeConsole_Write_System_UInt64_" data-uid="Terminal.Gui.FakeConsole.Write(System.UInt64)">Write(UInt64)</h4>
  1984. <div class="markdown level1 summary">
  1985. </div>
  1986. <div class="markdown level1 conceptual"></div>
  1987. <h5 class="decalaration">Declaration</h5>
  1988. <div class="codewrapper">
  1989. <pre><code class="lang-csharp hljs">public static void Write(ulong value)</code></pre>
  1990. </div>
  1991. <h5 class="parameters">Parameters</h5>
  1992. <table class="table table-bordered table-striped table-condensed">
  1993. <thead>
  1994. <tr>
  1995. <th>Type</th>
  1996. <th>Name</th>
  1997. <th>Description</th>
  1998. </tr>
  1999. </thead>
  2000. <tbody>
  2001. <tr>
  2002. <td><span class="xref">System.UInt64</span></td>
  2003. <td><span class="parametername">value</span></td>
  2004. <td></td>
  2005. </tr>
  2006. </tbody>
  2007. </table>
  2008. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2009. <h4 id="Terminal_Gui_FakeConsole_WriteLine" data-uid="Terminal.Gui.FakeConsole.WriteLine">WriteLine()</h4>
  2010. <div class="markdown level1 summary">
  2011. </div>
  2012. <div class="markdown level1 conceptual"></div>
  2013. <h5 class="decalaration">Declaration</h5>
  2014. <div class="codewrapper">
  2015. <pre><code class="lang-csharp hljs">public static void WriteLine()</code></pre>
  2016. </div>
  2017. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2018. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Boolean_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Boolean)">WriteLine(Boolean)</h4>
  2019. <div class="markdown level1 summary">
  2020. </div>
  2021. <div class="markdown level1 conceptual"></div>
  2022. <h5 class="decalaration">Declaration</h5>
  2023. <div class="codewrapper">
  2024. <pre><code class="lang-csharp hljs">public static void WriteLine(bool value)</code></pre>
  2025. </div>
  2026. <h5 class="parameters">Parameters</h5>
  2027. <table class="table table-bordered table-striped table-condensed">
  2028. <thead>
  2029. <tr>
  2030. <th>Type</th>
  2031. <th>Name</th>
  2032. <th>Description</th>
  2033. </tr>
  2034. </thead>
  2035. <tbody>
  2036. <tr>
  2037. <td><span class="xref">System.Boolean</span></td>
  2038. <td><span class="parametername">value</span></td>
  2039. <td></td>
  2040. </tr>
  2041. </tbody>
  2042. </table>
  2043. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2044. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Char_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Char)">WriteLine(Char)</h4>
  2045. <div class="markdown level1 summary">
  2046. </div>
  2047. <div class="markdown level1 conceptual"></div>
  2048. <h5 class="decalaration">Declaration</h5>
  2049. <div class="codewrapper">
  2050. <pre><code class="lang-csharp hljs">public static void WriteLine(char value)</code></pre>
  2051. </div>
  2052. <h5 class="parameters">Parameters</h5>
  2053. <table class="table table-bordered table-striped table-condensed">
  2054. <thead>
  2055. <tr>
  2056. <th>Type</th>
  2057. <th>Name</th>
  2058. <th>Description</th>
  2059. </tr>
  2060. </thead>
  2061. <tbody>
  2062. <tr>
  2063. <td><span class="xref">System.Char</span></td>
  2064. <td><span class="parametername">value</span></td>
  2065. <td></td>
  2066. </tr>
  2067. </tbody>
  2068. </table>
  2069. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2070. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Char___" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Char[])">WriteLine(Char[])</h4>
  2071. <div class="markdown level1 summary">
  2072. </div>
  2073. <div class="markdown level1 conceptual"></div>
  2074. <h5 class="decalaration">Declaration</h5>
  2075. <div class="codewrapper">
  2076. <pre><code class="lang-csharp hljs">public static void WriteLine(char[] buffer)</code></pre>
  2077. </div>
  2078. <h5 class="parameters">Parameters</h5>
  2079. <table class="table table-bordered table-striped table-condensed">
  2080. <thead>
  2081. <tr>
  2082. <th>Type</th>
  2083. <th>Name</th>
  2084. <th>Description</th>
  2085. </tr>
  2086. </thead>
  2087. <tbody>
  2088. <tr>
  2089. <td><span class="xref">System.Char</span>[]</td>
  2090. <td><span class="parametername">buffer</span></td>
  2091. <td></td>
  2092. </tr>
  2093. </tbody>
  2094. </table>
  2095. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2096. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Char___System_Int32_System_Int32_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Char[],System.Int32,System.Int32)">WriteLine(Char[], Int32, Int32)</h4>
  2097. <div class="markdown level1 summary">
  2098. </div>
  2099. <div class="markdown level1 conceptual"></div>
  2100. <h5 class="decalaration">Declaration</h5>
  2101. <div class="codewrapper">
  2102. <pre><code class="lang-csharp hljs">public static void WriteLine(char[] buffer, int index, int count)</code></pre>
  2103. </div>
  2104. <h5 class="parameters">Parameters</h5>
  2105. <table class="table table-bordered table-striped table-condensed">
  2106. <thead>
  2107. <tr>
  2108. <th>Type</th>
  2109. <th>Name</th>
  2110. <th>Description</th>
  2111. </tr>
  2112. </thead>
  2113. <tbody>
  2114. <tr>
  2115. <td><span class="xref">System.Char</span>[]</td>
  2116. <td><span class="parametername">buffer</span></td>
  2117. <td></td>
  2118. </tr>
  2119. <tr>
  2120. <td><span class="xref">System.Int32</span></td>
  2121. <td><span class="parametername">index</span></td>
  2122. <td></td>
  2123. </tr>
  2124. <tr>
  2125. <td><span class="xref">System.Int32</span></td>
  2126. <td><span class="parametername">count</span></td>
  2127. <td></td>
  2128. </tr>
  2129. </tbody>
  2130. </table>
  2131. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2132. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Decimal_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Decimal)">WriteLine(Decimal)</h4>
  2133. <div class="markdown level1 summary">
  2134. </div>
  2135. <div class="markdown level1 conceptual"></div>
  2136. <h5 class="decalaration">Declaration</h5>
  2137. <div class="codewrapper">
  2138. <pre><code class="lang-csharp hljs">public static void WriteLine(decimal value)</code></pre>
  2139. </div>
  2140. <h5 class="parameters">Parameters</h5>
  2141. <table class="table table-bordered table-striped table-condensed">
  2142. <thead>
  2143. <tr>
  2144. <th>Type</th>
  2145. <th>Name</th>
  2146. <th>Description</th>
  2147. </tr>
  2148. </thead>
  2149. <tbody>
  2150. <tr>
  2151. <td><span class="xref">System.Decimal</span></td>
  2152. <td><span class="parametername">value</span></td>
  2153. <td></td>
  2154. </tr>
  2155. </tbody>
  2156. </table>
  2157. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2158. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Double_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Double)">WriteLine(Double)</h4>
  2159. <div class="markdown level1 summary">
  2160. </div>
  2161. <div class="markdown level1 conceptual"></div>
  2162. <h5 class="decalaration">Declaration</h5>
  2163. <div class="codewrapper">
  2164. <pre><code class="lang-csharp hljs">public static void WriteLine(double value)</code></pre>
  2165. </div>
  2166. <h5 class="parameters">Parameters</h5>
  2167. <table class="table table-bordered table-striped table-condensed">
  2168. <thead>
  2169. <tr>
  2170. <th>Type</th>
  2171. <th>Name</th>
  2172. <th>Description</th>
  2173. </tr>
  2174. </thead>
  2175. <tbody>
  2176. <tr>
  2177. <td><span class="xref">System.Double</span></td>
  2178. <td><span class="parametername">value</span></td>
  2179. <td></td>
  2180. </tr>
  2181. </tbody>
  2182. </table>
  2183. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2184. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Int32_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Int32)">WriteLine(Int32)</h4>
  2185. <div class="markdown level1 summary">
  2186. </div>
  2187. <div class="markdown level1 conceptual"></div>
  2188. <h5 class="decalaration">Declaration</h5>
  2189. <div class="codewrapper">
  2190. <pre><code class="lang-csharp hljs">public static void WriteLine(int value)</code></pre>
  2191. </div>
  2192. <h5 class="parameters">Parameters</h5>
  2193. <table class="table table-bordered table-striped table-condensed">
  2194. <thead>
  2195. <tr>
  2196. <th>Type</th>
  2197. <th>Name</th>
  2198. <th>Description</th>
  2199. </tr>
  2200. </thead>
  2201. <tbody>
  2202. <tr>
  2203. <td><span class="xref">System.Int32</span></td>
  2204. <td><span class="parametername">value</span></td>
  2205. <td></td>
  2206. </tr>
  2207. </tbody>
  2208. </table>
  2209. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2210. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Int64_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Int64)">WriteLine(Int64)</h4>
  2211. <div class="markdown level1 summary">
  2212. </div>
  2213. <div class="markdown level1 conceptual"></div>
  2214. <h5 class="decalaration">Declaration</h5>
  2215. <div class="codewrapper">
  2216. <pre><code class="lang-csharp hljs">public static void WriteLine(long value)</code></pre>
  2217. </div>
  2218. <h5 class="parameters">Parameters</h5>
  2219. <table class="table table-bordered table-striped table-condensed">
  2220. <thead>
  2221. <tr>
  2222. <th>Type</th>
  2223. <th>Name</th>
  2224. <th>Description</th>
  2225. </tr>
  2226. </thead>
  2227. <tbody>
  2228. <tr>
  2229. <td><span class="xref">System.Int64</span></td>
  2230. <td><span class="parametername">value</span></td>
  2231. <td></td>
  2232. </tr>
  2233. </tbody>
  2234. </table>
  2235. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2236. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Object_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Object)">WriteLine(Object)</h4>
  2237. <div class="markdown level1 summary">
  2238. </div>
  2239. <div class="markdown level1 conceptual"></div>
  2240. <h5 class="decalaration">Declaration</h5>
  2241. <div class="codewrapper">
  2242. <pre><code class="lang-csharp hljs">public static void WriteLine(object value)</code></pre>
  2243. </div>
  2244. <h5 class="parameters">Parameters</h5>
  2245. <table class="table table-bordered table-striped table-condensed">
  2246. <thead>
  2247. <tr>
  2248. <th>Type</th>
  2249. <th>Name</th>
  2250. <th>Description</th>
  2251. </tr>
  2252. </thead>
  2253. <tbody>
  2254. <tr>
  2255. <td><span class="xref">System.Object</span></td>
  2256. <td><span class="parametername">value</span></td>
  2257. <td></td>
  2258. </tr>
  2259. </tbody>
  2260. </table>
  2261. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2262. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Single_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Single)">WriteLine(Single)</h4>
  2263. <div class="markdown level1 summary">
  2264. </div>
  2265. <div class="markdown level1 conceptual"></div>
  2266. <h5 class="decalaration">Declaration</h5>
  2267. <div class="codewrapper">
  2268. <pre><code class="lang-csharp hljs">public static void WriteLine(float value)</code></pre>
  2269. </div>
  2270. <h5 class="parameters">Parameters</h5>
  2271. <table class="table table-bordered table-striped table-condensed">
  2272. <thead>
  2273. <tr>
  2274. <th>Type</th>
  2275. <th>Name</th>
  2276. <th>Description</th>
  2277. </tr>
  2278. </thead>
  2279. <tbody>
  2280. <tr>
  2281. <td><span class="xref">System.Single</span></td>
  2282. <td><span class="parametername">value</span></td>
  2283. <td></td>
  2284. </tr>
  2285. </tbody>
  2286. </table>
  2287. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2288. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_String_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.String)">WriteLine(String)</h4>
  2289. <div class="markdown level1 summary">
  2290. </div>
  2291. <div class="markdown level1 conceptual"></div>
  2292. <h5 class="decalaration">Declaration</h5>
  2293. <div class="codewrapper">
  2294. <pre><code class="lang-csharp hljs">public static void WriteLine(string value)</code></pre>
  2295. </div>
  2296. <h5 class="parameters">Parameters</h5>
  2297. <table class="table table-bordered table-striped table-condensed">
  2298. <thead>
  2299. <tr>
  2300. <th>Type</th>
  2301. <th>Name</th>
  2302. <th>Description</th>
  2303. </tr>
  2304. </thead>
  2305. <tbody>
  2306. <tr>
  2307. <td><span class="xref">System.String</span></td>
  2308. <td><span class="parametername">value</span></td>
  2309. <td></td>
  2310. </tr>
  2311. </tbody>
  2312. </table>
  2313. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2314. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object)">WriteLine(String, Object)</h4>
  2315. <div class="markdown level1 summary">
  2316. </div>
  2317. <div class="markdown level1 conceptual"></div>
  2318. <h5 class="decalaration">Declaration</h5>
  2319. <div class="codewrapper">
  2320. <pre><code class="lang-csharp hljs">public static void WriteLine(string format, object arg0)</code></pre>
  2321. </div>
  2322. <h5 class="parameters">Parameters</h5>
  2323. <table class="table table-bordered table-striped table-condensed">
  2324. <thead>
  2325. <tr>
  2326. <th>Type</th>
  2327. <th>Name</th>
  2328. <th>Description</th>
  2329. </tr>
  2330. </thead>
  2331. <tbody>
  2332. <tr>
  2333. <td><span class="xref">System.String</span></td>
  2334. <td><span class="parametername">format</span></td>
  2335. <td></td>
  2336. </tr>
  2337. <tr>
  2338. <td><span class="xref">System.Object</span></td>
  2339. <td><span class="parametername">arg0</span></td>
  2340. <td></td>
  2341. </tr>
  2342. </tbody>
  2343. </table>
  2344. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2345. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object_System_Object_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object,System.Object)">WriteLine(String, Object, Object)</h4>
  2346. <div class="markdown level1 summary">
  2347. </div>
  2348. <div class="markdown level1 conceptual"></div>
  2349. <h5 class="decalaration">Declaration</h5>
  2350. <div class="codewrapper">
  2351. <pre><code class="lang-csharp hljs">public static void WriteLine(string format, object arg0, object arg1)</code></pre>
  2352. </div>
  2353. <h5 class="parameters">Parameters</h5>
  2354. <table class="table table-bordered table-striped table-condensed">
  2355. <thead>
  2356. <tr>
  2357. <th>Type</th>
  2358. <th>Name</th>
  2359. <th>Description</th>
  2360. </tr>
  2361. </thead>
  2362. <tbody>
  2363. <tr>
  2364. <td><span class="xref">System.String</span></td>
  2365. <td><span class="parametername">format</span></td>
  2366. <td></td>
  2367. </tr>
  2368. <tr>
  2369. <td><span class="xref">System.Object</span></td>
  2370. <td><span class="parametername">arg0</span></td>
  2371. <td></td>
  2372. </tr>
  2373. <tr>
  2374. <td><span class="xref">System.Object</span></td>
  2375. <td><span class="parametername">arg1</span></td>
  2376. <td></td>
  2377. </tr>
  2378. </tbody>
  2379. </table>
  2380. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2381. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object_System_Object_System_Object_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object,System.Object,System.Object)">WriteLine(String, Object, Object, Object)</h4>
  2382. <div class="markdown level1 summary">
  2383. </div>
  2384. <div class="markdown level1 conceptual"></div>
  2385. <h5 class="decalaration">Declaration</h5>
  2386. <div class="codewrapper">
  2387. <pre><code class="lang-csharp hljs">public static void WriteLine(string format, object arg0, object arg1, object arg2)</code></pre>
  2388. </div>
  2389. <h5 class="parameters">Parameters</h5>
  2390. <table class="table table-bordered table-striped table-condensed">
  2391. <thead>
  2392. <tr>
  2393. <th>Type</th>
  2394. <th>Name</th>
  2395. <th>Description</th>
  2396. </tr>
  2397. </thead>
  2398. <tbody>
  2399. <tr>
  2400. <td><span class="xref">System.String</span></td>
  2401. <td><span class="parametername">format</span></td>
  2402. <td></td>
  2403. </tr>
  2404. <tr>
  2405. <td><span class="xref">System.Object</span></td>
  2406. <td><span class="parametername">arg0</span></td>
  2407. <td></td>
  2408. </tr>
  2409. <tr>
  2410. <td><span class="xref">System.Object</span></td>
  2411. <td><span class="parametername">arg1</span></td>
  2412. <td></td>
  2413. </tr>
  2414. <tr>
  2415. <td><span class="xref">System.Object</span></td>
  2416. <td><span class="parametername">arg2</span></td>
  2417. <td></td>
  2418. </tr>
  2419. </tbody>
  2420. </table>
  2421. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2422. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object_System_Object_System_Object_System_Object_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object,System.Object,System.Object,System.Object)">WriteLine(String, Object, Object, Object, Object)</h4>
  2423. <div class="markdown level1 summary">
  2424. </div>
  2425. <div class="markdown level1 conceptual"></div>
  2426. <h5 class="decalaration">Declaration</h5>
  2427. <div class="codewrapper">
  2428. <pre><code class="lang-csharp hljs">public static void WriteLine(string format, object arg0, object arg1, object arg2, object arg3)</code></pre>
  2429. </div>
  2430. <h5 class="parameters">Parameters</h5>
  2431. <table class="table table-bordered table-striped table-condensed">
  2432. <thead>
  2433. <tr>
  2434. <th>Type</th>
  2435. <th>Name</th>
  2436. <th>Description</th>
  2437. </tr>
  2438. </thead>
  2439. <tbody>
  2440. <tr>
  2441. <td><span class="xref">System.String</span></td>
  2442. <td><span class="parametername">format</span></td>
  2443. <td></td>
  2444. </tr>
  2445. <tr>
  2446. <td><span class="xref">System.Object</span></td>
  2447. <td><span class="parametername">arg0</span></td>
  2448. <td></td>
  2449. </tr>
  2450. <tr>
  2451. <td><span class="xref">System.Object</span></td>
  2452. <td><span class="parametername">arg1</span></td>
  2453. <td></td>
  2454. </tr>
  2455. <tr>
  2456. <td><span class="xref">System.Object</span></td>
  2457. <td><span class="parametername">arg2</span></td>
  2458. <td></td>
  2459. </tr>
  2460. <tr>
  2461. <td><span class="xref">System.Object</span></td>
  2462. <td><span class="parametername">arg3</span></td>
  2463. <td></td>
  2464. </tr>
  2465. </tbody>
  2466. </table>
  2467. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2468. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object___" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object[])">WriteLine(String, Object[])</h4>
  2469. <div class="markdown level1 summary">
  2470. </div>
  2471. <div class="markdown level1 conceptual"></div>
  2472. <h5 class="decalaration">Declaration</h5>
  2473. <div class="codewrapper">
  2474. <pre><code class="lang-csharp hljs">public static void WriteLine(string format, params object[] arg)</code></pre>
  2475. </div>
  2476. <h5 class="parameters">Parameters</h5>
  2477. <table class="table table-bordered table-striped table-condensed">
  2478. <thead>
  2479. <tr>
  2480. <th>Type</th>
  2481. <th>Name</th>
  2482. <th>Description</th>
  2483. </tr>
  2484. </thead>
  2485. <tbody>
  2486. <tr>
  2487. <td><span class="xref">System.String</span></td>
  2488. <td><span class="parametername">format</span></td>
  2489. <td></td>
  2490. </tr>
  2491. <tr>
  2492. <td><span class="xref">System.Object</span>[]</td>
  2493. <td><span class="parametername">arg</span></td>
  2494. <td></td>
  2495. </tr>
  2496. </tbody>
  2497. </table>
  2498. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2499. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_UInt32_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.UInt32)">WriteLine(UInt32)</h4>
  2500. <div class="markdown level1 summary">
  2501. </div>
  2502. <div class="markdown level1 conceptual"></div>
  2503. <h5 class="decalaration">Declaration</h5>
  2504. <div class="codewrapper">
  2505. <pre><code class="lang-csharp hljs">public static void WriteLine(uint value)</code></pre>
  2506. </div>
  2507. <h5 class="parameters">Parameters</h5>
  2508. <table class="table table-bordered table-striped table-condensed">
  2509. <thead>
  2510. <tr>
  2511. <th>Type</th>
  2512. <th>Name</th>
  2513. <th>Description</th>
  2514. </tr>
  2515. </thead>
  2516. <tbody>
  2517. <tr>
  2518. <td><span class="xref">System.UInt32</span></td>
  2519. <td><span class="parametername">value</span></td>
  2520. <td></td>
  2521. </tr>
  2522. </tbody>
  2523. </table>
  2524. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2525. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_UInt64_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.UInt64)">WriteLine(UInt64)</h4>
  2526. <div class="markdown level1 summary">
  2527. </div>
  2528. <div class="markdown level1 conceptual"></div>
  2529. <h5 class="decalaration">Declaration</h5>
  2530. <div class="codewrapper">
  2531. <pre><code class="lang-csharp hljs">public static void WriteLine(ulong value)</code></pre>
  2532. </div>
  2533. <h5 class="parameters">Parameters</h5>
  2534. <table class="table table-bordered table-striped table-condensed">
  2535. <thead>
  2536. <tr>
  2537. <th>Type</th>
  2538. <th>Name</th>
  2539. <th>Description</th>
  2540. </tr>
  2541. </thead>
  2542. <tbody>
  2543. <tr>
  2544. <td><span class="xref">System.UInt64</span></td>
  2545. <td><span class="parametername">value</span></td>
  2546. <td></td>
  2547. </tr>
  2548. </tbody>
  2549. </table>
  2550. </article>
  2551. </div>
  2552. <div class="hidden-sm col-md-2" role="complementary">
  2553. <div class="sideaffix">
  2554. <div class="contribution">
  2555. <ul class="nav">
  2556. </ul>
  2557. </div>
  2558. <nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
  2559. <h5>In This Article</h5>
  2560. <div></div>
  2561. </nav>
  2562. </div>
  2563. </div>
  2564. </div>
  2565. </div>
  2566. <footer>
  2567. <div class="grad-bottom"></div>
  2568. <div class="footer">
  2569. <div class="container">
  2570. <span class="pull-right">
  2571. <a href="#top">Back to top</a>
  2572. </span>
  2573. <span>Generated by <strong>DocFX</strong></span>
  2574. </div>
  2575. </div>
  2576. </footer>
  2577. </div>
  2578. <script type="text/javascript" src="../../styles/docfx.vendor.js"></script>
  2579. <script type="text/javascript" src="../../styles/docfx.js"></script>
  2580. <script type="text/javascript" src="../../styles/main.js"></script>
  2581. </body>
  2582. </html>