cm0002@lemmy.world to Programmer Humor@programming.dev · 3 months agoDoes this exist anywhere outside of C++?imagemessage-square50linkfedilinkarrow-up11arrow-down10cross-posted to: programmerhumor@lemmy.ml
arrow-up11arrow-down1imageDoes this exist anywhere outside of C++?cm0002@lemmy.world to Programmer Humor@programming.dev · 3 months agomessage-square50linkfedilinkcross-posted to: programmerhumor@lemmy.ml
minus-squarer00ty@kbin.lifelinkfedilinkarrow-up0·3 months agoMaybe c# has similar. There’s \r\n or \n like c++ and Environment.NewLine. Probably it’s similar in that Environment.NewLine takes into account the operating system in use and I wonder if endl in c++ does the same thing?
minus-squarevithigar@lemmy.calinkfedilinkarrow-up0·3 months agoC# also has verbatim strings, in which you can just put a literal newline. string foo = @"This string has a line break!";
Maybe c# has similar. There’s \r\n or \n like c++ and Environment.NewLine.
Probably it’s similar in that Environment.NewLine takes into account the operating system in use and I wonder if endl in c++ does the same thing?
C# also has verbatim strings, in which you can just put a literal newline.
string foo = @"This string has a line break!";