在 C# 中的字符串中找到 {0} 是什么意思?

What does {0} mean when found in a string in C#?(在 C# 中的字符串中找到 {0} 是什么意思?)
本文介绍了在 C# 中的字符串中找到 {0} 是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在这样的字典中:

Dictionary<string, string> openWith = new Dictionary<string, string>();

openWith.Add("txt", "notepad.exe");
openWith.Add("bmp", "paint.exe");
openWith.Add("dib", "paint.exe");
openWith.Add("rtf", "wordpad.exe");

Console.WriteLine("For key = "rtf", value = {0}.", openWith["rtf"]);

输出是:

对于 Key = "rtf" value = wordpad.exe

For Key = "rtf" value = wordpad.exe

{0} 是什么意思?

推荐答案

您正在打印一个格式化的字符串.{0} 表示在格式字符串后面插入第一个参数;在这种情况下,与键rtf"关联的值.

You are printing a formatted string. The {0} means to insert the first parameter following the format string; in this case the value associated with the key "rtf".

对于 String.Format,如果你有类似的东西,这是相似的

For String.Format, which is similar, if you had something like

//            Format string                    {0}           {1}
String.Format("This {0}.  The value is {1}.",  "is a test",  42 ) 

您将创建一个字符串This is a test.值为 42".

you'd create a string "This is a test. The value is 42".

您还可以使用表达式,并多次打印值:

You can also use expressions, and print values out multiple times:

//            Format string              {0} {1}  {2}
String.Format("Fib: {0}, {0}, {1}, {2}", 1,  1+1, 1+2) 

yielding "Fib: 1, 1, 2, 3"

yielding "Fib: 1, 1, 2, 3"

在 http://msdn.microsoft.com/en-us 查看更多信息/library/txafckwd.aspx,讨论复合格式.

这篇关于在 C# 中的字符串中找到 {0} 是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)