01.
using
System;
02.
03.
namespace
Basic
04.
{
05.
class
Program
06.
{
07.
static
void
Main(
string
[] args)
08.
{
09.
string
msg =
"こんにちは"
;
10.
11.
Console.WriteLine($
"やあ! {msg}"
);
12.
13.
// Paiza では使用可能です
14.
15.
// PowerShell や Runcode では
16.
Console.WriteLine(
"やあ! {0}"
, msg);
17.
// とする必要があります
18.
19.
// @ と同時に使う場合は $@ です
20.
Console.WriteLine($@
"{msg}! c:\user を作成してください"
);
21.
22.
string
desktop = @
"C:\Users\lightbox\Desktop"
;
23.
Console.WriteLine($
"{desktop} を使用しないでください"
);
24.
25.
Console.ReadLine();
26.
}
27.
}
28.
}
$ - 文字列補間 (C# リファレンス)