Expressions C# with Example



Expressions C# with Example

Full expressions can also be used in interpolated strings. 
var StrWithMathExpression = $"1 + 2 = {1 + 2}"; // -> "1 + 2 = 3" 
string world = "world"; 
var StrWithFunctionCall = $"Hello, {world.ToUpper()}!"; // -> "Hello, WORLD!" 
Live Demo on .NET Fiddle 

0 Comment's

Comment Form

Submit Comment