日常生活的交流与学习

首页 新随笔 联系 管理

2024年1月31日 #

摘要: MIT许可证:只为作者保留版权,而无任何其他了限制。 它使人们几乎可以对您的项目进行任何操作,即时是制作和分发封闭源代码版本。 Babel,.NET Core和 Rails 使用MIT许可证¹。 BSD许可证:同样鼓励代码共享和尊重原作者的著作权,同样允许代码修改,再发布 (作为开源或商业软件)。 阅读全文
posted @ 2024-01-31 19:31 lazycookie 阅读(100) 评论(0) 推荐(0) 编辑

摘要: RemoteDesktopConnection\src\Program.cs #define debug using System; using System.Text.RegularExpressions; namespace RDP { class Program { static void M 阅读全文
posted @ 2024-01-31 19:06 lazycookie 阅读(38) 评论(0) 推荐(0) 编辑

摘要: RemoteDesktopConnection\src\LogInfo.cs namespace RDP { class LogInfo { public string Ipaddress { get; set; } public string Username { get; set; } publ 阅读全文
posted @ 2024-01-31 18:37 lazycookie 阅读(35) 评论(0) 推荐(0) 编辑

摘要: PropertySupport\Person.cs public class Person { public string Name { get; set; } public string getPropertyName() { return PropertySupport.ExtractPrope 阅读全文
posted @ 2024-01-31 14:39 lazycookie 阅读(9) 评论(0) 推荐(0) 编辑

摘要: BindableBase.cs public abstract class BindableBase : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; // 调用方法 : publ 阅读全文
posted @ 2024-01-31 14:23 lazycookie 阅读(36) 评论(0) 推荐(0) 编辑