LoginSignup
5
4

More than 5 years have passed since last update.

C# 6.0 "$" Dollar Syntax

Posted at

C# 6.0 "$" Dollar Syntax

"何それおいしいの?"

そう思ったそこのお兄さん!お姉さん!ちょっとよければ軽く見ていきましょう
単純なシンタックスですが、良い機能なので是非使っていきましょう

before

var name = "John";
Console.WriteLine( string.Format( "Hello {0}", name ) );

after

var name = "John";
Console.WriteLine( $"Hello {name}" );
5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4