using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1_StudyFromBook
{
class Program
{
static void Main(string[] args)
{
int a = 927;
byte b = 255;
Console.WriteLine("a={0},b={1}", a, b);
Console.ReadLine();
}
}
}
C#中{0}表示占位符,表示这里是第0个用户要放入内容的地方
最新推荐文章于 2024-05-02 21:01:48 发布