
C#学习笔记
文章平均质量分 65
HumbleCoderX
普通学生外加咸鱼一枚
展开
-
C# VS控制台输出扑克牌花色
Console.OutputEncoding=Encoding.GetEncoding(“gbk”); 或者 Console.OutputEncoding=Encoding.UTF8;原创 2019-10-12 23:23:42 · 2813 阅读 · 0 评论 -
C# string类型函数
https://www.runoob.com/csharp/csharp-string.html 1 public static int Compare( string strA, string strB ) 比较两个指定的 string 对象,并返回一个表示它们在排列顺序中相对位置的整数。该方法区分大小写。 2 public static int Compare( string strA, st...原创 2019-09-11 13:55:12 · 1904 阅读 · 0 评论 -
C#+Visual Studio Code的安装说明
C#+Visual Studio Code的安装说明 安装.NET Core 安装包下载地址:https://www.microsoft.com/net/download .NET Core 包括(一共两个缺一不可) .NET Core Runtime : .NET Core 运行时 .NET Core SDK :使用.NET Core开发应用.NE...原创 2019-09-11 02:00:26 · 3000 阅读 · 0 评论 -
C# DateTime的格式化日期
C# DateTime的格式化日期 DateTime dt = new DateTime(2019, 9, 6, 13, 4, 5, 100); //中文系统 Console.WriteLine(string.Format("{0:y yy yyy yyyy}", dt)); //19 19...原创 2019-09-16 18:23:56 · 3922 阅读 · 0 评论