码迷,mamicode.com
首页 > Windows程序 > 详细

C# @strin $string $@string

时间:2018-10-22 13:02:38      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:输出   ber   from   exe   实现   apply   cin   str   输入参数   

@string  保证换行后也属于同一个字符串  (请特别注意\r\n这样也会直接输入,不在起到换行的效果)

string execSql = @" SELECT

  T1.ProcInstID,T1.Folio,T1.ApplyID,T2.RowID,T2.CurWorkFlowStep,T2.CurAuditor,T2.ModDate
   FROM dbo.WF_ApplyInstance T1";

$string  让 {} 里变为可编译,能输入参数,  要输出{}  就需要 {{  }}

string name = "gyg";

string sql = $"select * from member where name = ‘{name}‘";

$@string 可同步实现上面呢两个效果

C# @strin $string $@string

标签:输出   ber   from   exe   实现   apply   cin   str   输入参数   

原文地址:https://www.cnblogs.com/gygtech/p/9829169.html

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