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

string.Format 中不能包含{}字符串

时间:2015-04-17 08:22:43      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:

string scss = @"<style type=""text/css"">
body{
    margin-left: {0}px;
    margin-top: {1}px;
}
</style>";
            scss = string.Format(scss, marginleft, margintop);

调试时提示string.Format格式错误,不太明白,后来将{}也作为修改字符串

        public void AddcssBody(int marginleft=2,int margintop=2)
        {
            string scss = @"<style type=""text/css"">
body{2}
    margin-left: {0}px;
    margin-top: {1}px;
{3}
</style>";
            scss = string.Format(scss, marginleft, margintop, "{", "}");
            Headary.Add(scss);
        }

正确显示.

string.Format 中不能包含{}字符串

标签:

原文地址:http://www.cnblogs.com/flyant/p/4433880.html

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