码迷,mamicode.com
首页 > 其他好文 > 详细

内插字符串$与复合格式设置{}

时间:2018-06-20 12:58:02      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:class   rod   string   hat   ring   date   similar   out   mil   

string name = "Mark";

var date = DateTime.Now;

复合格式设置{}:

// Composite formatting: Console.WriteLine("Hello, {0}! Today is {1}, it‘s {2:HH:mm} now.", name, date.DayOfWeek, date);

内插字符串$:

// String interpolation: Console.WriteLine($"Hello, {name}! Today is {date.DayOfWeek}, it‘s {date:HH:mm} now.");

// Both calls produce the same output that is similar to:

// Hello, Mark! Today is Wednesday, it‘s 19:40 now.

内插字符串$与复合格式设置{}

标签:class   rod   string   hat   ring   date   similar   out   mil   

原文地址:https://www.cnblogs.com/uftwkb24/p/9202947.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!