String Interpolation

There is a cleaner format to allow you put expressions directly in the string literal to evaluate expressions.

string onestring = "one"; 
string twostring = "two";
WriteLine("contents : \ {onestring} \ {twostring}");



© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited TopPrevNext