當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# String Format()用法及代碼示例


C# Format() 方法用於將指定字符串中的一個或多個格式項替換為指定對象的字符串表示形式。

簽名

public static string Format (String first, Object second) 
public static string Format(IFormatProvider, String, Object)
public static string Format(IFormatProvider, String, Object, Object)
public static string Format(IFormatProvider, String, Object, Object, Object)  
public static string Format(IFormatProvider, String, Object[]) 
public static string Format(String, Object, Object)
public static string Format(String, Object, Object, Object)
public static string Format(String, params Object[])

參數

first:它是一個字符串類型的參數。

second:它是對象類型參數。

返回

它返回一個格式化的字符串。

C# 字符串 Format() 方法示例

using System;  
    public class StringExample  
    {  
        public static void Main(string[] args)  
        {  
                     
          string s1 = string.Format("{0:D}", DateTime.Now);
          Console.WriteLine(s1);
        }  
    }

輸出:

Saturday, December 17, 2016




相關用法


注:本文由純淨天空篩選整理自 C# String Format()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。