摘要:
MIT许可证:只为作者保留版权,而无任何其他了限制。 它使人们几乎可以对您的项目进行任何操作,即时是制作和分发封闭源代码版本。 Babel,.NET Core和 Rails 使用MIT许可证¹。 BSD许可证:同样鼓励代码共享和尊重原作者的著作权,同样允许代码修改,再发布 (作为开源或商业软件)。 阅读全文
2024年1月31日 #
摘要:
RemoteDesktopConnection\src\Program.cs #define debug using System; using System.Text.RegularExpressions; namespace RDP { class Program { static void M 阅读全文
摘要:
RemoteDesktopConnection\src\LogInfo.cs namespace RDP { class LogInfo { public string Ipaddress { get; set; } public string Username { get; set; } publ 阅读全文
摘要:
PropertySupport\Person.cs public class Person { public string Name { get; set; } public string getPropertyName() { return PropertySupport.ExtractPrope 阅读全文
摘要:
BindableBase.cs public abstract class BindableBase : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; // 调用方法 : publ 阅读全文