人類的世界有許多的工廠,
將原料送入後就會變成商品,
C#的世界裡也是,
方法就像一間間的工廠一樣,
一發包就能得到想要的東西
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CsharpDemo
{
class Program
{
static void Main(string[] args)
{
//我們來呼叫方法並賦值給變數
string animal = GetChicken();
Console.WriteLine(animal);
Console.ReadKey();
}
//宣告字串方法
static string GetChicken()
{
return "孤獨一隻雞";
}
}
}
結果:
孤獨一隻雞
使用static關鍵字時,表示他是靜態的,所以不需要去new他
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CsharpDemo
{
class Program
{
static void Main(string[] args)
{
//來取得過去的一個時間吧
string MtDate = GetDate(1995, 4, 9);
Console.WriteLine(MtDate);
//來取得今日的時間吧
MtDate = GetDate(2021, 9, 17);
Console.WriteLine(MtDate);
Console.ReadKey();
}
//宣告一個組合日期的方法
static string GetDate(int y,int M,int d)
{
//因為值傳進來是正數所以需要轉成字串
string Date_y = Convert.ToString(y);//第一種轉型方式Convert.To...
string Date_M = M.ToString();//第二種轉型方式 參數.ToString()
string Date_d = d.ToString();
//組合回傳字串,用return回傳
return Date_y + "年 " + Date_M + "月 " + Date_d + "日";
}
}
}
結果:
1995年 4月 9日
2021年 9月 17日