using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;函數
//做用1:返回值;做用2:當即結束本次方法的執行spa
namespace _03return關鍵字
{
class Program
{
static void Main(string[] args)
{
while(true)
{
Console.WriteLine("Hello world!");
//break;//跳出當前循環
//continue;//跳到循環條件進行判斷
return;//直接跳過main函數,當即結束本次方法的執行
}
Console.WriteLine("哈哈哈");
Console.ReadKey();
}
}
}string