上一页 1 2 3 4 5 6 7 8 ··· 18 下一页
摘要: 网卡部分高级设置 1.节能以太网 Energy Efficient Ethernet 2.自动关闭Gigabit Automatically Close Gigabit 3.电量低时降低网络速度 Reduce Speed On Power Down 4.流控制 Flow Control 5.千兆主从 阅读全文
posted @ 2024-09-18 15:38 echo-efun 阅读(849) 评论(0) 推荐(0)
摘要: 1.查询一定范围数字 static void QueryInt() { // Specify the data source. int[] scores = { 97, 92, 81, 60 }; // Define the query expression. IEnumerable<int> sc 阅读全文
posted @ 2024-09-18 13:55 echo-efun 阅读(23) 评论(0) 推荐(0)
摘要: Invoke是同步更新,会阻塞所在工作者线程,而BeginInvoke是异步更新,不会阻塞当前线程 阅读全文
posted @ 2024-08-26 13:38 echo-efun 阅读(23) 评论(0) 推荐(0)
摘要: public static void Main() { List<int>? numbers = null; int? a = null; Console.WriteLine((numbers is null)); //true // 如果numbers为空,则初始化numbers,同时添加一个5到 阅读全文
posted @ 2024-08-23 16:33 echo-efun 阅读(31) 评论(0) 推荐(0)
摘要: public static async Task Main() { Task<int> downloading = TaskAsync(); Console.WriteLine($"{nameof(Main)}: A"); int bytesLoaded = await downloading; C 阅读全文
posted @ 2024-08-23 16:06 echo-efun 阅读(17) 评论(0) 推荐(0)
摘要: 非引用类型初始化为空,类型后面加? int? value = null; //在不想指定value一个初始值情况下,指定value为空 阅读全文
posted @ 2024-08-22 10:50 echo-efun 阅读(14) 评论(0) 推荐(0)
摘要: <Viewbox Stretch="Fill"> 布局内容 </Viewbox> 阅读全文
posted @ 2024-08-20 18:56 echo-efun 阅读(36) 评论(0) 推荐(0)
摘要: https://learn.microsoft.com/zh-cn/dotnet/core/porting/ 阅读全文
posted @ 2024-08-14 14:18 echo-efun 阅读(7) 评论(0) 推荐(0)
摘要: //view和viewmodel绑定 DataContext = LogViewModel.Instance; //指具体绑定对象 阅读全文
posted @ 2024-08-13 15:45 echo-efun 阅读(39) 评论(0) 推荐(0)
摘要: TextWrapping="Wrap" 不显示滚动条 ScrollViewer.HorizontalScrollBarVisibility="Disabled" ScrollViewer.VerticalScrollBarVisibility="Disabled" 阅读全文
posted @ 2024-08-13 15:24 echo-efun 阅读(52) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 18 下一页