亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

自定義格式化字符串

發布時間:2020-07-12 18:46:29 來源:網絡 閱讀:397 作者:1473348968 欄目:編程語言

----------------------------------------------主程序

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication4
{
    class Program
    {
        static void Main(string[] args)
        {
            //自定義格式化字符串
            Voctor v = new Voctor(3d, 4d, 5d);
            Console.WriteLine("{0:zhang}", v);//Zhang:(3,4,5)
            Console.WriteLine("{0:liu}", v);//Liu:(3,4,5)
            Console.ReadKey();
        }
    }
}

----------------------------------------------Voctor.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication4
{
    //自定義格式化字符串類或結構必須實現IFormattable接口
    public class Voctor : IFormattable
    {
        double x, y, z;

        public Voctor(double d1, double d2, double d3)
        {
            this.x = d1;
            this.y = d2;
            this.z = d3;
        }
        //format表示傳遞的說明符,例如N(不用考慮formatProvider)
        public string ToString(string format, IFormatProvider formatProvider)
        {
            if (format == null)
            {
                return ToString();
            }
            //不區分大小寫
            string formatUpper = format.ToUpper();
            switch (formatUpper)
            {
                case "ZHANG":
                    return "Zhang:" + ToString();
                case "LIU":
                    return "Liu:" + ToString();
                default:
                    return ToString();
            }
        }
        public override string ToString()
        {
            return string.Format("({0},{1},{2})", x, y, z);
        }
    }
}

 

自定義格式化字符串

自定義格式化字符串

 

 

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

佛冈县| 望城县| 射阳县| 峨眉山市| 十堰市| 海阳市| 高台县| 兖州市| 舞钢市| 盐边县| 即墨市| 上虞市| 科尔| 普陀区| 望城县| 专栏| 威海市| 平度市| 白城市| 内黄县| 申扎县| 鹰潭市| 成武县| 曲靖市| 杂多县| 卢龙县| 邢台县| 墨江| 广平县| SHOW| 正安县| 平远县| 襄樊市| 鄂伦春自治旗| 谢通门县| 清水县| 桓台县| 固阳县| 金昌市| 吴川市| 杭锦旗|