我找不到這個標籤{0}
,是什麼意思?什麼是這個標誌{0}的名字,這是什麼意思?
0
A
回答
3
它最常用作字符串格式化函數的一部分,並且意味着(從零開始)列表中的第一個參數應該替換它。例如:
var output = String.Format("{0},{1}", "Hello", "World") // Gives "Hello, World"
字符串格式化數據綁定一個共同的元素,所以你也經常會看到它作爲綁定表達式的一部分。
1
它是一個字符串替換標記。
看看這個例子,它解釋瞭如何使用這些符號:
class Program
{
static void Main()
{
string value1 = "Dot";
string value2 = "Net";
string value3 = "Perls";
Console.WriteLine("{0}, {1}, {2}", // <-- This is called a format string.
value1, // <-- These are substitutions.
value2,
value3);
}
}
這使得輸出:
點,淨,皮爾斯
0
它可以用於string formatting:
DateTime dat = new DateTime(2012, 1, 17, 9, 30, 0);
string city = "Chicago";
int temp = -16;
string output = String.Format("At {0} in {1}, the temperature was {2} degrees.",
dat, city, temp);
Console.WriteLine(output);
// The example displays the following output:
// At 1/17/2012 9:30:00 AM in Chicago, the temperature was -16 degrees.
0
它是一個佔位符(示例):
int selectedItem = 1;
// Generate the output string
string output = string.Format("You selected item {0} from the list.", selectedItem);
Console.WriteLine(output); // Outputs "You selected item 5 from the list."
0
它是基於零的索引佔位符,稱爲格式的物品,在複合格式字符串。
在運行時,每個格式項目被替換爲參數列表中相應參數的字符串表示形式。如果參數的值爲空,則替換爲String.Empty
。
例如,以下對格式(字符串,對象,對象,對象)方法的調用包括具有三個格式項{0},{1}和{2}的格式字符串以及一個參數列表三個項目。
詳細的格式幫助,可以在http://msdn.microsoft.com/en-us/library/txafckwd.aspx
相關問題
- 1. 這個切片是什麼意思[:,:,0]?
- 2. 這裏的「= 0」是什麼意思?
- 3. 什麼是PPC,這是什麼意思?
- 4. 這是什麼`_time_independent_equals`是什麼意思?
- 5. 我混淆了這個標誌!=這是什麼意思?
- 6. 這是什麼意思? void * free_me = 0;
- 7. int max =〜0;這是什麼意思?
- 8. switch(!0)這是什麼意思
- 9. glenable(0) - 這是什麼意思?
- 10. 0x0F是什麼意思?這個代碼是什麼意思?
- 11. Rails日誌。這是什麼意思
- 12. 這個圖標是指什麼意思
- 13. 這個netbeans圖標是什麼意思?
- 14. 這是什麼意思,這個Urikind.relative
- 15. 這個字符串是什麼意思?
- 16. 這個代字號是什麼意思?
- 17. 「DHT11?0:-40;」這個語法是什麼意思,它叫什麼?
- 18. 這是爲什麼產生一個java.lang.StackOverflowError,這是什麼意思?
- 19. PHP這是什麼意思?
- 20. 這是什麼意思? function()!()
- 21. 這是什麼意思?
- 22. 這是什麼意思? [c#]
- 23. System.BadImageFormatException這是什麼意思?
- 24. Ç - 這是什麼意思〜
- 25. :這是什麼意思?
- 26. IllegalStateException:這是什麼意思?
- 27. 這是什麼意思?
- 28. 這是什麼意思:&** this;
- 29. 這些是什麼意思?
- 30. 「這」是什麼意思?
發現表明它是如何使用 – codingbiz