✅ My stringbuilder is skipping lines
Aside from a previous post I made: ✅ Familiarity with `YamlDotNet` package, parsing to strongly typed object keeps failing
I am trying to parse some strings lines, but the stringbuilder itself is already skipping lines and I'm not entirely sure why it skips those lines.
The builder part (see the
The
And what I get in the console is the following:
So my stringbuilder already fails
I get more when I just do
So I need a way to include the body as well
I am trying to parse some strings lines, but the stringbuilder itself is already skipping lines and I'm not entirely sure why it skips those lines.
The builder part (see the
stream variable later):The
stream variable:And what I get in the console is the following:
So my stringbuilder already fails
I get more when I just do
reader.ReadToEnd().Replace("---", "").Trim() but that will skip the body which could come after the last "---" part.So I need a way to include the body as well