I know that you could print a line in C# using ‘\n’ character. Is it possible to print out 1 and a half using C#.net special character. I’m doing this because I have this control in a client IOS application that would need to absorb a string with one and a half line thrown by a web service? thanks
Share
In the console? No. Consoles don’t support half lines. This isn’t a C# limitation – it’s a console limitation. A console is just a grid of characters, basically. Even colour is pretty hi-tech for consoles 🙂
(I’m assuming you’re talking about a vertical line separation of 1.5 lines. If that’s not what you mean, please clarify your question.)