上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: 在初学时,我们交换数据一般借助中介者模式 temp int a=10; int b=20; int temp=b; b=a; int a=temp; C#元组,提供了简便的写法 int a = 10; int b = 20; Console.WriteLine($"Before swap: a = 阅读全文
posted @ 2024-09-04 22:52 孤沉 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 由于最近一个项目未曾使用数据库,所以在记住密码的时候,只能保存数据到本地, /// <summary> /// 保存在本地的登录用户 /// 在不启用数据库的情况下,可以对外使用本地数据 /// </summary> public class LoginInfoLocation { public c 阅读全文
posted @ 2024-09-04 22:40 孤沉 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 代码如下 public class Student : BindableBase { private string _title; public string Title { get => _title; set => SetProperty(ref _title, value); } privat 阅读全文
posted @ 2024-08-30 01:04 孤沉 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1、首先主页面 <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="220" /> <ColumnDefinition /> </Grid.ColumnDefinitions> <Grid Grid.Column="1"> <Grid.R 阅读全文
posted @ 2024-08-28 23:16 孤沉 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 1、PowerToys 它最实用的就是 1、获取电脑颜色拾取器,尺寸大小测量,这个对前端或者UI方便 2、直接快速打开环境变量、Host、注册表 3、对桌面进行布局 4、通常我们进行大容量的文件复制 比如从盘符复制东西到U盘,已经关闭文件资源管理器,但是弹出U盘时依然报错 使用它,右键直接解锁 2、 阅读全文
posted @ 2024-08-05 15:01 孤沉 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 这是Prism框架开发者写的一个demo,我觉得有趣,就发出来让大家看看 <StackPanel> <StackPanel Orientation="Horizontal"> <Button x:Name="AnimationButton" Click="AnimationButton_Click" 阅读全文
posted @ 2024-08-04 18:43 孤沉 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 你们猜猜谁先打印,不看答案,能猜出来吗,写在评论区 下面有3道题目,分别写出答案在评论区 1、 class Test { public static void Main() { Foo("Hello"); } public static void Foo(object x) { Console.Wr 阅读全文
posted @ 2024-08-02 20:21 孤沉 阅读(2) 评论(0) 推荐(0) 编辑
摘要: public interface IEventTransmit { void Publish<T>(object obj = null) where T : EventBase, new(); void Subscribe<T>(Action<object> executeMethod) where 阅读全文
posted @ 2024-07-31 05:07 孤沉 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 突然想起Asp.Net 启动项目的建造者写法非常优秀,所以让自己的代码看起来高级,美观,优雅。 我模拟一个场景使用它 直接上代码 public class TestQuery { public static void Main() { QueryableBuilder queryableBuilde 阅读全文
posted @ 2024-07-30 14:41 孤沉 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1、打开Edge浏览器,使用163邮箱或者qq邮箱注册微软账号并登录 2、打开网站,使用刚才的账号继续注册nuget,并登录 https://www.nuget.org/ 3、新建standard类库 4、修改csproj文件 将 <TargetFramework>standard2.1<Targe 阅读全文
posted @ 2024-07-21 23:02 孤沉 阅读(1) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页