C# @strin $string $@string

2021-07-05 10:06

阅读:353

标签:输出   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

上一篇:c#获取pdf文件页数

下一篇:windows2012安装


评论


亲,登录后才可以留言!