I'm using .NET Interactive notebook inside VS Code and want to change the number of printed out elements:
var x = Enumerable.Range(0,21);
x.Display();
Only first 20 element are shown in the the output:

Can I somehow increase the size of output?
I'm using .NET Interactive notebook inside VS Code and want to change the number of printed out elements:
var x = Enumerable.Range(0,21);
x.Display();
Only first 20 element are shown in the the output:

Can I somehow increase the size of output?
You can use
FormatterfromMicrosoft.DotNet.Interactive.Formattingnamespace to change the size of the output:Docs:
Formatter.ListExpansionLimit= 20Gets or sets the limit to the number of items that will be written out in detail from an
IEnumerablesequence.Formatter<T>.ListExpansionLimit= (not set)An optional type-specific list expansion limit