当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。