上一页 1 ··· 13 14 15 16 17
摘要: static void Main(string[] args) { List<Man> list = new List<Man>(); for (int i = 0; i < 10; i++) { Man d = new Man(); d.Age = i ; d.Name = i.ToString( 阅读全文
posted @ 2021-05-08 00:15 艾特-天空之海 阅读(183) 评论(0) 推荐(0) 编辑
摘要: namespace test_Console{ public class Man { public void Go() { Console.WriteLine("GO"); } } class Program { static void Main(string[] args) { Go<Man>() 阅读全文
posted @ 2021-05-07 23:52 艾特-天空之海 阅读(99) 评论(0) 推荐(0) 编辑
摘要: <Button Background="Transparent" Margin="0,0,139,61"> <Button.Content> <StackPanel> <Ellipse Fill="Green" Width="25" Height="25"/> <Label Content="OK! 阅读全文
posted @ 2020-07-05 19:01 艾特-天空之海 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 点击按钮的后台代码: this.WindowState = WindowState.Minimized; 运行程序后,点击按钮,窗体将最小化。 阅读全文
posted @ 2020-07-05 17:27 艾特-天空之海 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 一切准备就绪……,之后就没有之后了; 需要下载这两个补丁:kb4474419 和 kb4490628; 安装这两个补丁之后,就可以开始安装了VS2019了; 阅读全文
posted @ 2020-06-26 11:03 艾特-天空之海 阅读(535) 评论(0) 推荐(0) 编辑
摘要: 在类中敲出代码ctor,此时可以看见有提示,如下图: 然后,按两次Tab键,默认无参数的构造函数创建完成,如下图: 阅读全文
posted @ 2020-06-10 21:37 艾特-天空之海 阅读(683) 评论(0) 推荐(0) 编辑
摘要: 没有执行构造函数的实例,它的名字默认为空; 执行了构造函数的实例,它的名字为“李白2S”; 效果如下: 代码如下: using System;using System.Collections.Generic;using System.Linq;using System.Runtime.Seriali 阅读全文
posted @ 2020-06-10 21:08 艾特-天空之海 阅读(705) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17