How to increase BufferHeight property
I have a text file with 1000 lines inside my project but it starts reading from line 703 up to 1000.
What has been gone wrong? Normally it should read all lines.
using System;
using System.IO;
using System.Text;
namespace ConsoleApp1
{
class Program
{
static void Main(string args)
{
int b = 0;
string lines = File.ReadAllLines(@"C:UsersblablasourcereposConsoleApp1DEV-data.txt");
int subString = 0;
foreach (string l in lines)
{
b++;
Console.WriteLine(b+" Line "+l);
}
// Keep the console window open in debug mode.
Console.WriteLine("Press any key to exit.");
System.Console.ReadKey();
}
}
}
Based on the comments, i will need to increase the BufferSize property of the console.
public static int BufferHeight { get; set; }
How can i increase the BufferHeight property so my console can be able to print all 1000 lines?
c#
|
show 5 more comments
I have a text file with 1000 lines inside my project but it starts reading from line 703 up to 1000.
What has been gone wrong? Normally it should read all lines.
using System;
using System.IO;
using System.Text;
namespace ConsoleApp1
{
class Program
{
static void Main(string args)
{
int b = 0;
string lines = File.ReadAllLines(@"C:UsersblablasourcereposConsoleApp1DEV-data.txt");
int subString = 0;
foreach (string l in lines)
{
b++;
Console.WriteLine(b+" Line "+l);
}
// Keep the console window open in debug mode.
Console.WriteLine("Press any key to exit.");
System.Console.ReadKey();
}
}
}
Based on the comments, i will need to increase the BufferSize property of the console.
public static int BufferHeight { get; set; }
How can i increase the BufferHeight property so my console can be able to print all 1000 lines?
c#
1
What happens when you step through your code? What are you observing?
– rory.ap
Nov 12 '18 at 12:29
Well it outputs 297 lines and not 1000
– Gragas Incoming
Nov 12 '18 at 12:31
5
Is it that you only see 297 lines since the console buffer can only show the latest 297 lines?
– Sani Singh Huttunen
Nov 12 '18 at 12:32
Check the value ofConsole.BufferHeight
- console windows have vertical and horizontal buffers, so it might be that it's printing all 1000 lines, but you are only able to scroll up to line 703 due to the buffer.
– Diado
Nov 12 '18 at 12:33
1
I'm not asking what it outputs. What happens when you step through the code line by line and look at the variables, look at where the program flow is going? For instance, you assign0
tob
...are you saying the first thing you see is297
? Watch the value ofb
and see what's actually going on.
– rory.ap
Nov 12 '18 at 12:33
|
show 5 more comments
I have a text file with 1000 lines inside my project but it starts reading from line 703 up to 1000.
What has been gone wrong? Normally it should read all lines.
using System;
using System.IO;
using System.Text;
namespace ConsoleApp1
{
class Program
{
static void Main(string args)
{
int b = 0;
string lines = File.ReadAllLines(@"C:UsersblablasourcereposConsoleApp1DEV-data.txt");
int subString = 0;
foreach (string l in lines)
{
b++;
Console.WriteLine(b+" Line "+l);
}
// Keep the console window open in debug mode.
Console.WriteLine("Press any key to exit.");
System.Console.ReadKey();
}
}
}
Based on the comments, i will need to increase the BufferSize property of the console.
public static int BufferHeight { get; set; }
How can i increase the BufferHeight property so my console can be able to print all 1000 lines?
c#
I have a text file with 1000 lines inside my project but it starts reading from line 703 up to 1000.
What has been gone wrong? Normally it should read all lines.
using System;
using System.IO;
using System.Text;
namespace ConsoleApp1
{
class Program
{
static void Main(string args)
{
int b = 0;
string lines = File.ReadAllLines(@"C:UsersblablasourcereposConsoleApp1DEV-data.txt");
int subString = 0;
foreach (string l in lines)
{
b++;
Console.WriteLine(b+" Line "+l);
}
// Keep the console window open in debug mode.
Console.WriteLine("Press any key to exit.");
System.Console.ReadKey();
}
}
}
Based on the comments, i will need to increase the BufferSize property of the console.
public static int BufferHeight { get; set; }
How can i increase the BufferHeight property so my console can be able to print all 1000 lines?
c#
c#
edited Nov 12 '18 at 13:10
Patrick Hofman
125k18170224
125k18170224
asked Nov 12 '18 at 12:27
Gragas Incoming
26813
26813
1
What happens when you step through your code? What are you observing?
– rory.ap
Nov 12 '18 at 12:29
Well it outputs 297 lines and not 1000
– Gragas Incoming
Nov 12 '18 at 12:31
5
Is it that you only see 297 lines since the console buffer can only show the latest 297 lines?
– Sani Singh Huttunen
Nov 12 '18 at 12:32
Check the value ofConsole.BufferHeight
- console windows have vertical and horizontal buffers, so it might be that it's printing all 1000 lines, but you are only able to scroll up to line 703 due to the buffer.
– Diado
Nov 12 '18 at 12:33
1
I'm not asking what it outputs. What happens when you step through the code line by line and look at the variables, look at where the program flow is going? For instance, you assign0
tob
...are you saying the first thing you see is297
? Watch the value ofb
and see what's actually going on.
– rory.ap
Nov 12 '18 at 12:33
|
show 5 more comments
1
What happens when you step through your code? What are you observing?
– rory.ap
Nov 12 '18 at 12:29
Well it outputs 297 lines and not 1000
– Gragas Incoming
Nov 12 '18 at 12:31
5
Is it that you only see 297 lines since the console buffer can only show the latest 297 lines?
– Sani Singh Huttunen
Nov 12 '18 at 12:32
Check the value ofConsole.BufferHeight
- console windows have vertical and horizontal buffers, so it might be that it's printing all 1000 lines, but you are only able to scroll up to line 703 due to the buffer.
– Diado
Nov 12 '18 at 12:33
1
I'm not asking what it outputs. What happens when you step through the code line by line and look at the variables, look at where the program flow is going? For instance, you assign0
tob
...are you saying the first thing you see is297
? Watch the value ofb
and see what's actually going on.
– rory.ap
Nov 12 '18 at 12:33
1
1
What happens when you step through your code? What are you observing?
– rory.ap
Nov 12 '18 at 12:29
What happens when you step through your code? What are you observing?
– rory.ap
Nov 12 '18 at 12:29
Well it outputs 297 lines and not 1000
– Gragas Incoming
Nov 12 '18 at 12:31
Well it outputs 297 lines and not 1000
– Gragas Incoming
Nov 12 '18 at 12:31
5
5
Is it that you only see 297 lines since the console buffer can only show the latest 297 lines?
– Sani Singh Huttunen
Nov 12 '18 at 12:32
Is it that you only see 297 lines since the console buffer can only show the latest 297 lines?
– Sani Singh Huttunen
Nov 12 '18 at 12:32
Check the value of
Console.BufferHeight
- console windows have vertical and horizontal buffers, so it might be that it's printing all 1000 lines, but you are only able to scroll up to line 703 due to the buffer.– Diado
Nov 12 '18 at 12:33
Check the value of
Console.BufferHeight
- console windows have vertical and horizontal buffers, so it might be that it's printing all 1000 lines, but you are only able to scroll up to line 703 due to the buffer.– Diado
Nov 12 '18 at 12:33
1
1
I'm not asking what it outputs. What happens when you step through the code line by line and look at the variables, look at where the program flow is going? For instance, you assign
0
to b
...are you saying the first thing you see is 297
? Watch the value of b
and see what's actually going on.– rory.ap
Nov 12 '18 at 12:33
I'm not asking what it outputs. What happens when you step through the code line by line and look at the variables, look at where the program flow is going? For instance, you assign
0
to b
...are you saying the first thing you see is 297
? Watch the value of b
and see what's actually going on.– rory.ap
Nov 12 '18 at 12:33
|
show 5 more comments
1 Answer
1
active
oldest
votes
The default for BufferHeight and BufferWidth are 300 rows and 85 columns respectively. This indicates that you indeed need to increase the Console.BufferHeight
property and set it to greater than 1000.
Max value for BufferHeight is Int16.MaxValue - 1
.
...
Console.BufferHeight = 1200;
foreach (string l in lines)
{
b++;
Console.WriteLine(b+" Line "+l);
}
...
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53262206%2fhow-to-increase-bufferheight-property%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The default for BufferHeight and BufferWidth are 300 rows and 85 columns respectively. This indicates that you indeed need to increase the Console.BufferHeight
property and set it to greater than 1000.
Max value for BufferHeight is Int16.MaxValue - 1
.
...
Console.BufferHeight = 1200;
foreach (string l in lines)
{
b++;
Console.WriteLine(b+" Line "+l);
}
...
add a comment |
The default for BufferHeight and BufferWidth are 300 rows and 85 columns respectively. This indicates that you indeed need to increase the Console.BufferHeight
property and set it to greater than 1000.
Max value for BufferHeight is Int16.MaxValue - 1
.
...
Console.BufferHeight = 1200;
foreach (string l in lines)
{
b++;
Console.WriteLine(b+" Line "+l);
}
...
add a comment |
The default for BufferHeight and BufferWidth are 300 rows and 85 columns respectively. This indicates that you indeed need to increase the Console.BufferHeight
property and set it to greater than 1000.
Max value for BufferHeight is Int16.MaxValue - 1
.
...
Console.BufferHeight = 1200;
foreach (string l in lines)
{
b++;
Console.WriteLine(b+" Line "+l);
}
...
The default for BufferHeight and BufferWidth are 300 rows and 85 columns respectively. This indicates that you indeed need to increase the Console.BufferHeight
property and set it to greater than 1000.
Max value for BufferHeight is Int16.MaxValue - 1
.
...
Console.BufferHeight = 1200;
foreach (string l in lines)
{
b++;
Console.WriteLine(b+" Line "+l);
}
...
answered Nov 12 '18 at 12:47
Sani Singh Huttunen
18.6k25264
18.6k25264
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53262206%2fhow-to-increase-bufferheight-property%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
What happens when you step through your code? What are you observing?
– rory.ap
Nov 12 '18 at 12:29
Well it outputs 297 lines and not 1000
– Gragas Incoming
Nov 12 '18 at 12:31
5
Is it that you only see 297 lines since the console buffer can only show the latest 297 lines?
– Sani Singh Huttunen
Nov 12 '18 at 12:32
Check the value of
Console.BufferHeight
- console windows have vertical and horizontal buffers, so it might be that it's printing all 1000 lines, but you are only able to scroll up to line 703 due to the buffer.– Diado
Nov 12 '18 at 12:33
1
I'm not asking what it outputs. What happens when you step through the code line by line and look at the variables, look at where the program flow is going? For instance, you assign
0
tob
...are you saying the first thing you see is297
? Watch the value ofb
and see what's actually going on.– rory.ap
Nov 12 '18 at 12:33