【例子介绍】c# wifnrom 简单版宿舍管系统(可能有点不完整)菜单栏动态展示,Mysql版
c# mysql数据
首页实时展示天气,可查看宿舍消息,宿管待处理消息,我提交的,查看舍友
【相关图片】
【源码结构】
.
├── LodgingHouseSystem
│ ├── Console
│ │ ├── App.config
│ │ ├── LodingConsoles.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── BouncyCastle.Crypto.dll
│ │ │ │ ├── Config
│ │ │ │ │ └── CityConfig.txt
│ │ │ │ ├── Google.Protobuf.dll
│ │ │ │ ├── HZH_Controls.dll
│ │ │ │ ├── IP2Region.dll
│ │ │ │ ├── K4os.Compression.LZ4.Streams.dll
│ │ │ │ ├── K4os.Compression.LZ4.dll
│ │ │ │ ├── K4os.Hash.xxHash.dll
│ │ │ │ ├── LodgingHouse.BLL.dll
│ │ │ │ ├── LodgingHouse.BLL.dll.config
│ │ │ │ ├── LodgingHouse.BLL.pdb
│ │ │ │ ├── LodgingHouse.DAL.dll
│ │ │ │ ├── LodgingHouse.DAL.pdb
│ │ │ │ ├── LodgingHouse.Models.dll
│ │ │ │ ├── LodgingHouse.Models.pdb
│ │ │ │ ├── LodgingHouse.Util.dll
│ │ │ │ ├── LodgingHouse.Util.dll.config
│ │ │ │ ├── LodgingHouse.Util.pdb
│ │ │ │ ├── LodingConsoles.exe
│ │ │ │ ├── LodingConsoles.exe.config
│ │ │ │ ├── LodingConsoles.pdb
│ │ │ │ ├── Masuit.Tools.dll
│ │ │ │ ├── Masuit.Tools.pdb
│ │ │ │ ├── Masuit.Tools.xml
│ │ │ │ ├── MySql.Data.dll
│ │ │ │ ├── MySql.Data.xml
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.xml
│ │ │ │ ├── SqlSugar.dll
│ │ │ │ ├── System.Buffers.dll
│ │ │ │ ├── System.Memory.dll
│ │ │ │ ├── System.Numerics.Vectors.dll
│ │ │ │ ├── System.ValueTuple.dll
│ │ │ │ ├── ZstdNet.dll
│ │ │ │ ├── ip2region.db
│ │ │ │ └── json
│ │ │ │ └── 最新_city.json
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── Console.csproj.AssemblyReference.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── LodingConsoles.csproj.AssemblyReference.cache
│ │ ├── LodingConsoles.csproj.CopyComplete
│ │ ├── LodingConsoles.csproj.CoreCompileInputs.cache
│ │ ├── LodingConsoles.csproj.FileListAbsolute.txt
│ │ ├── LodingConsoles.csproj.SuggestedBindingRedirects.cache
│ │ ├── LodingConsoles.exe
│ │ ├── LodingConsoles.exe.config
│ │ ├── LodingConsoles.pdb
│ │ └── TempPE
│ ├── LodgingHouse.BLL
│ │ ├── CityBLL.cs
│ │ ├── DBHelperBLL.cs
│ │ ├── Dictionaries.cs
│ │ ├── HostelBLL.cs
│ │ ├── LodgingHouse.BLL.csproj
│ │ ├── NoticeBLL.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── SupervisorBLL.cs
│ │ ├── UserinfoBLL.cs
│ │ ├── app.config
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── BouncyCastle.Crypto.dll
│ │ │ │ ├── Google.Protobuf.dll
│ │ │ │ ├── HZH_Controls.dll
│ │ │ │ ├── IP2Region.dll
│ │ │ │ ├── K4os.Compression.LZ4.Streams.dll
│ │ │ │ ├── K4os.Compression.LZ4.dll
│ │ │ │ ├── K4os.Hash.xxHash.dll
│ │ │ │ ├── LodgingHouse.BLL.dll
│ │ │ │ ├── LodgingHouse.BLL.dll.config
│ │ │ │ ├── LodgingHouse.BLL.pdb
│ │ │ │ ├── LodgingHouse.DAL.dll
│ │ │ │ ├── LodgingHouse.DAL.pdb
│ │ │ │ ├── LodgingHouse.Models.dll
│ │ │ │ ├── LodgingHouse.Models.pdb
│ │ │ │ ├── LodgingHouse.Util.dll
│ │ │ │ ├── LodgingHouse.Util.dll.config
│ │ │ │ ├── LodgingHouse.Util.pdb
│ │ │ │ ├── Masuit.Tools.dll
│ │ │ │ ├── Masuit.Tools.pdb
│ │ │ │ ├── Masuit.Tools.xml
│ │ │ │ ├── MySql.Data.dll
│ │ │ │ ├── MySql.Data.xml
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.xml
│ │ │ │ ├── SqlSugar.dll
│ │ │ │ ├── System.Buffers.dll
│ │ │ │ ├── System.Memory.dll
│ │ │ │ ├── System.Numerics.Vectors.dll
│ │ │ │ ├── System.ValueTuple.dll
│ │ │ │ └── ZstdNet.dll
│ │ │ └── Release
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── LodgingHouse.BLL.csproj.AssemblyReference.cache
│ │ │ ├── LodgingHouse.BLL.csproj.CopyComplete
│ │ │ ├── LodgingHouse.BLL.csproj.CoreCompileInputs.cache
│ │ │ ├── LodgingHouse.BLL.csproj.FileListAbsolute.txt
│ │ │ ├── LodgingHouse.BLL.dll
│ │ │ ├── LodgingHouse.BLL.pdb
│ │ │ └── TempPE
│ │ ├── packages.config
│ │ └── tb_menusBLL.cs
│ ├── LodgingHouse.DAL
│ │ ├── DB
│ │ │ └── DBHelper.cs
│ │ ├── LodgingHouse.DAL.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── LodgingHouse.DAL.dll
│ │ │ │ ├── LodgingHouse.DAL.pdb
│ │ │ │ └── SqlSugar.dll
│ │ │ └── Release
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── LodgingHouse.DAL.csproj.AssemblyReference.cache
│ │ │ │ ├── LodgingHouse.DAL.csproj.CopyComplete
│ │ │ │ ├── LodgingHouse.DAL.csproj.CoreCompileInputs.cache
│ │ │ │ ├── LodgingHouse.DAL.csproj.FileListAbsolute.txt
│ │ │ │ ├── LodgingHouse.DAL.dll
│ │ │ │ ├── LodgingHouse.DAL.pdb
│ │ │ │ └── TempPE
│ │ │ └── Release
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── LodgingHouse.DAL.csproj.AssemblyReference.cache
│ │ └── packages.config
│ ├── LodgingHouse.Models
│ │ ├── Api
│ │ │ └── Rsults
│ │ │ └── weather.cs
│ │ ├── LodgingHouse.Models.csproj
│ │ ├── LogicModel
│ │ │ ├── ComboxModel.cs
│ │ │ ├── NoticeInfo.cs
│ │ │ ├── UserManageModel.cs
│ │ │ └── UsersModel.cs
│ │ ├── Notice.cs
│ │ ├── Output
│ │ │ ├── DormitoryOutput.cs
│ │ │ ├── MyDormitoryOutput.cs
│ │ │ ├── NoticeInfoOutput.cs
│ │ │ └── SupervisorOutput.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── LodgingHouse.Models.dll
│ │ │ │ ├── LodgingHouse.Models.pdb
│ │ │ │ ├── SqlSugar.dll
│ │ │ │ ├── System.ValueTuple.dll
│ │ │ │ └── System.ValueTuple.xml
│ │ │ └── Release
│ │ ├── menususer.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── LodgingHouse.Models.csproj.AssemblyReference.cache
│ │ │ ├── LodgingHouse.Models.csproj.CopyComplete
│ │ │ ├── LodgingHouse.Models.csproj.CoreCompileInputs.cache
│ │ │ ├── LodgingHouse.Models.csproj.FileListAbsolute.txt
│ │ │ ├── LodgingHouse.Models.dll
│ │ │ ├── LodgingHouse.Models.pdb
│ │ │ └── TempPE
│ │ ├── packages.config
│ │ ├── tb_ChinaArea.cs
│ │ ├── tb_city.cs
│ │ ├── tb_hostel.cs
│ │ ├── tb_menus.cs
│ │ ├── tb_supervisor.cs
│ │ ├── tb_sysstem.cs
│ │ └── tb_userinfo.cs
│ ├── LodgingHouse.Util
│ │ ├── GrowlMessage.cs
│ │ ├── Helper
│ │ │ ├── FrmLoading.cs
│ │ │ ├── FrmLoading.designer.cs
│ │ │ ├── FrmLoading.resx
│ │ │ ├── LoadingDot.cs
│ │ │ └── LoadingHelper.cs
│ │ ├── JsonHelper.cs
│ │ ├── LodgingHouse.Util.csproj
│ │ ├── Md5Helper.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ └── Resources.resx
│ │ ├── SystemSetting.cs
│ │ ├── Utils.cs
│ │ ├── app.config
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── BouncyCastle.Crypto.dll
│ │ │ │ ├── Google.Protobuf.dll
│ │ │ │ ├── HZH_Controls.dll
│ │ │ │ ├── HtmlAgilityPack.dll
│ │ │ │ ├── HtmlAgilityPack.pdb
│ │ │ │ ├── HtmlAgilityPack.xml
│ │ │ │ ├── IP2Region.dll
│ │ │ │ ├── K4os.Compression.LZ4.Streams.dll
│ │ │ │ ├── K4os.Compression.LZ4.dll
│ │ │ │ ├── K4os.Hash.xxHash.dll
│ │ │ │ ├── LodgingHouse.Models.dll
│ │ │ │ ├── LodgingHouse.Models.pdb
│ │ │ │ ├── LodgingHouse.Util.dll
│ │ │ │ ├── LodgingHouse.Util.dll.config
│ │ │ │ ├── LodgingHouse.Util.pdb
│ │ │ │ ├── Masuit.Tools.dll
│ │ │ │ ├── Masuit.Tools.pdb
│ │ │ │ ├── Masuit.Tools.xml
│ │ │ │ ├── MySql.Data.dll
│ │ │ │ ├── MySql.Data.xml
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.xml
│ │ │ │ ├── SqlSugar.dll
│ │ │ │ ├── System.Buffers.dll
│ │ │ │ ├── System.Memory.dll
│ │ │ │ ├── System.Numerics.Vectors.dll
│ │ │ │ ├── System.ValueTuple.dll
│ │ │ │ └── ZstdNet.dll
│ │ │ └── Release
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── LodgingHouse.Util.FrmLoading.resources
│ │ │ ├── LodgingHouse.Util.Properties.Resources.resources
│ │ │ ├── LodgingHouse.Util.csproj.AssemblyReference.cache
│ │ │ ├── LodgingHouse.Util.csproj.CopyComplete
│ │ │ ├── LodgingHouse.Util.csproj.CoreCompileInputs.cache
│ │ │ ├── LodgingHouse.Util.csproj.FileListAbsolute.txt
│ │ │ ├── LodgingHouse.Util.csproj.GenerateResource.cache
│ │ │ ├── LodgingHouse.Util.dll
│ │ │ ├── LodgingHouse.Util.pdb
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── packages.config
│ ├── LodgingHouseSystem
│ │ ├── App.config
│ │ ├── LH_Login.Designer.cs
│ │ ├── LH_Login.cs
│ │ ├── LH_Login.resx
│ │ ├── LH_Main.Designer.cs
│ │ ├── LH_Main.cs
│ │ ├── LH_Main.resx
│ │ ├── LodgingHouseSystem.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ ├── 27天气.png
│ │ │ ├── daydaysushe.png
│ │ │ ├── 发送-提交 - 副本.png
│ │ │ ├── 删除.png
│ │ │ ├── 刷新.png
│ │ │ ├── 头像.png
│ │ │ ├── 宿舍.png
│ │ │ ├── 报修.png
│ │ │ ├── 未读.png
│ │ │ ├── 楼盘.png
│ │ │ ├── 消息.png
│ │ │ ├── 申请.png
│ │ │ ├── 详情.png
│ │ │ ├── 待处理.png
│ │ │ ├── 已读信息.png
│ │ │ ├── 我的任务.png
│ │ │ └── 编辑更改.png
│ │ ├── View
│ │ │ ├── AboutUs.Designer.cs
│ │ │ ├── AboutUs.cs
│ │ │ ├── AboutUs.resx
│ │ │ ├── FMMessageList.Designer.cs
│ │ │ ├── FMMessageList.cs
│ │ │ ├── FMMessageList.resx
│ │ │ ├── FM_Base.Designer.cs
│ │ │ ├── FM_Base.cs
│ │ │ ├── FM_Base.resx
│ │ │ ├── FM_FloorManage.Designer.cs
│ │ │ ├── FM_FloorManage.cs
│ │ │ ├── FM_FloorManage.resx
│ │ │ ├── FM_ForgotPwd.Designer.cs
│ │ │ ├── FM_ForgotPwd.cs
│ │ │ ├── FM_ForgotPwd.resx
│ │ │ ├── FM_Manage.Designer.cs
│ │ │ ├── FM_Manage.cs
│ │ │ ├── FM_Manage.resx
│ │ │ ├── FM_SendMessage.Designer.cs
│ │ │ ├── FM_SendMessage.cs
│ │ │ ├── FM_SendMessage.resx
│ │ │ ├── FM_ShowDialog.Designer.cs
│ │ │ ├── FM_ShowDialog.cs
│ │ │ ├── FM_ShowDialog.resx
│ │ │ ├── FM_UserOption.Designer.cs
│ │ │ ├── FM_UserOption.cs
│ │ │ ├── FM_UserOption.resx
│ │ │ ├── FM_ViewDetails.Designer.cs
│ │ │ ├── FM_ViewDetails.cs
│ │ │ ├── FM_ViewDetails.resx
│ │ │ ├── FM_Weather.Designer.cs
│ │ │ ├── FM_Weather.cs
│ │ │ ├── FM_Weather.resx
│ │ │ ├── SystemOption.Designer.cs
│ │ │ ├── SystemOption.cs
│ │ │ ├── SystemOption.resx
│ │ │ ├── V_Dormitory.Designer.cs
│ │ │ ├── V_Dormitory.cs
│ │ │ ├── V_Dormitory.resx
│ │ │ ├── V_DormitoryFill.Designer.cs
│ │ │ ├── V_DormitoryFill.cs
│ │ │ ├── V_DormitoryFill.resx
│ │ │ ├── V_DormitoryOption.Designer.cs
│ │ │ ├── V_DormitoryOption.cs
│ │ │ ├── V_DormitoryOption.resx
│ │ │ ├── V_Main.Designer.cs
│ │ │ ├── V_Main.cs
│ │ │ ├── V_Main.resx
│ │ │ ├── V_XS_Man.Designer.cs
│ │ │ ├── V_XS_Man.cs
│ │ │ └── V_XS_Man.resx
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── BouncyCastle.Crypto.dll
│ │ │ │ ├── CSkin.dll
│ │ │ │ ├── Google.Protobuf.dll
│ │ │ │ ├── HZH_Controls.dll
│ │ │ │ ├── IP2Region.dll
│ │ │ │ ├── Images
│ │ │ │ │ ├── 未读.png
│ │ │ │ │ └── 已读信息.png
│ │ │ │ ├── K4os.Compression.LZ4.Streams.dll
│ │ │ │ ├── K4os.Compression.LZ4.dll
│ │ │ │ ├── K4os.Hash.xxHash.dll
│ │ │ │ ├── LodgingHouse.BLL.dll
│ │ │ │ ├── LodgingHouse.BLL.dll.config
│ │ │ │ ├── LodgingHouse.BLL.pdb
│ │ │ │ ├── LodgingHouse.DAL.dll
│ │ │ │ ├── LodgingHouse.DAL.pdb
│ │ │ │ ├── LodgingHouse.Models.dll
│ │ │ │ ├── LodgingHouse.Models.pdb
│ │ │ │ ├── LodgingHouse.Util.dll
│ │ │ │ ├── LodgingHouse.Util.dll.config
│ │ │ │ ├── LodgingHouse.Util.pdb
│ │ │ │ ├── LodgingHouseSystem.exe
│ │ │ │ ├── LodgingHouseSystem.exe.config
│ │ │ │ ├── LodgingHouseSystem.pdb
│ │ │ │ ├── Masuit.Tools.dll
│ │ │ │ ├── Masuit.Tools.pdb
│ │ │ │ ├── Masuit.Tools.xml
│ │ │ │ ├── MySql.Data.dll
│ │ │ │ ├── MySql.Data.xml
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.xml
│ │ │ │ ├── SqlSugar.dll
│ │ │ │ ├── System.Buffers.dll
│ │ │ │ ├── System.Memory.dll
│ │ │ │ ├── System.Numerics.Vectors.dll
│ │ │ │ ├── System.ValueTuple.dll
│ │ │ │ ├── ZstdNet.dll
│ │ │ │ └── ip2region.db
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── LodgingHouseSystem.LH_Login.resources
│ │ ├── LodgingHouseSystem.LH_Main.resources
│ │ ├── LodgingHouseSystem.Properties.Resources.resources
│ │ ├── LodgingHouseSystem.View.AboutUs.resources
│ │ ├── LodgingHouseSystem.View.FMMessageList.resources
│ │ ├── LodgingHouseSystem.View.FM_Base.resources
│ │ ├── LodgingHouseSystem.View.FM_FloorManage.resources
│ │ ├── LodgingHouseSystem.View.FM_ForgotPwd.resources
│ │ ├── LodgingHouseSystem.View.FM_Manage.resources
│ │ ├── LodgingHouseSystem.View.FM_SendMessage.resources
│ │ ├── LodgingHouseSystem.View.FM_ShowDialog.resources
│ │ ├── LodgingHouseSystem.View.FM_UserOption.resources
│ │ ├── LodgingHouseSystem.View.FM_ViewDetails.resources
│ │ ├── LodgingHouseSystem.View.FM_Weather.resources
│ │ ├── LodgingHouseSystem.View.SystemOption.resources
│ │ ├── LodgingHouseSystem.View.V_Dormitory.resources
│ │ ├── LodgingHouseSystem.View.V_DormitoryFill.resources
│ │ ├── LodgingHouseSystem.View.V_DormitoryOption.resources
│ │ ├── LodgingHouseSystem.View.V_Main.resources
│ │ ├── LodgingHouseSystem.View.V_XS_Man.resources
│ │ ├── LodgingHouseSystem.csproj.AssemblyReference.cache
│ │ ├── LodgingHouseSystem.csproj.CopyComplete
│ │ ├── LodgingHouseSystem.csproj.CoreCompileInputs.cache
│ │ ├── LodgingHouseSystem.csproj.FileListAbsolute.txt
│ │ ├── LodgingHouseSystem.csproj.GenerateResource.cache
│ │ ├── LodgingHouseSystem.csproj.SuggestedBindingRedirects.cache
│ │ ├── LodgingHouseSystem.exe
│ │ ├── LodgingHouseSystem.exe.config
│ │ ├── LodgingHouseSystem.g.resources
│ │ ├── LodgingHouseSystem.pdb
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── LodgingHouseSystem.sln
│ └── packages
│ ├── HZH_Controls.1.0.14
│ │ ├── HZH_Controls.1.0.14.nupkg
│ │ └── lib
│ │ └── net40
│ │ └── HZH_Controls.dll
│ ├── HtmlAgilityPack.1.11.46
│ │ ├── HtmlAgilityPack.1.11.46.nupkg
│ │ └── lib
│ │ ├── Net35
│ │ │ ├── HtmlAgilityPack.dll
│ │ │ ├── HtmlAgilityPack.pdb
│ │ │ └── HtmlAgilityPack.xml
│ │ ├── Net40
│ │ │ ├── HtmlAgilityPack.XML
│ │ │ ├── HtmlAgilityPack.dll
│ │ │ └── HtmlAgilityPack.pdb
│ │ ├── Net40-client
│ │ │ ├── HtmlAgilityPack.dll
│ │ │ ├── HtmlAgilityPack.pdb
│ │ │ └── HtmlAgilityPack.xml
│ │ ├── Net45
│ │ │ ├── HtmlAgilityPack.XML
│ │ │ ├── HtmlAgilityPack.dll
│ │ │ └── HtmlAgilityPack.pdb
│ │ ├── NetCore45
│ │ │ ├── HtmlAgilityPack.XML
│ │ │ ├── HtmlAgilityPack.dll
│ │ │ └── HtmlAgilityPack.pdb
│ │ ├── netstandard1.3
│ │ │ ├── HtmlAgilityPack.deps.json
│ │ │ ├── HtmlAgilityPack.dll
│ │ │ ├── HtmlAgilityPack.pdb
│ │ │ └── HtmlAgilityPack.xml
│ │ ├── netstandard1.6
│ │ │ ├── HtmlAgilityPack.deps.json
│ │ │ ├── HtmlAgilityPack.dll
│ │ │ ├── HtmlAgilityPack.pdb
│ │ │ └── HtmlAgilityPack.xml
│ │ ├── netstandard2.0
│ │ │ ├── HtmlAgilityPack.deps.json
│ │ │ ├── HtmlAgilityPack.dll
│ │ │ ├── HtmlAgilityPack.pdb
│ │ │ └── HtmlAgilityPack.xml
│ │ ├── portable-net45 netcore45 wp8 MonoAndroid MonoTouch
│ │ │ ├── HtmlAgilityPack.XML
│ │ │ ├── HtmlAgilityPack.dll
│ │ │ └── HtmlAgilityPack.pdb
│ │ ├── portable-net45 netcore45 wpa81 wp8 MonoAndroid MonoTouch
│ │ │ ├── HtmlAgilityPack.XML
│ │ │ ├── HtmlAgilityPack.dll
│ │ │ └── HtmlAgilityPack.pdb
│ │ └── uap10.0
│ │ ├── HtmlAgilityPack.XML
│ │ ├── HtmlAgilityPack.dll
│ │ ├── HtmlAgilityPack.pdb
│ │ └── HtmlAgilityPack.pri
│ ├── IP2Region.1.2.0
│ │ ├── IP2Region.1.2.0.nupkg
│ │ └── lib
│ │ ├── net45
│ │ │ └── IP2Region.dll
│ │ ├── net46
│ │ │ └── IP2Region.dll
│ │ ├── net47
│ │ │ └── IP2Region.dll
│ │ └── netstandard2.0
│ │ └── IP2Region.dll
│ ├── Masuit.Tools.Net.2.5.7.5
│ │ ├── Masuit.Tools.Net.2.5.7.5.nupkg
│ │ ├── lib
│ │ │ └── net461
│ │ │ ├── Masuit.Tools.XML
│ │ │ ├── Masuit.Tools.dll
│ │ │ └── Masuit.Tools.pdb
│ │ └── src
│ │ ├── Config
│ │ │ └── CoreConfig.cs
│ │ ├── Database
│ │ │ ├── DataTableBuilder.cs
│ │ │ └── DataTableHelper.cs
│ │ ├── DateTimeExt
│ │ │ ├── ChineseCalendar.cs
│ │ │ ├── DateInfoStruct.cs
│ │ │ ├── DateTimeHelper.cs
│ │ │ └── WeekHolidayStruct.cs
│ │ ├── Extensions
│ │ │ └── BaseType
│ │ │ ├── BigIntegerExtensions.cs
│ │ │ ├── DoubleExtensions.cs
│ │ │ ├── IConvertibleExtensions.cs
│ │ │ ├── IDictionaryExtensions.cs
│ │ │ ├── IEnumerableExtensions.cs
│ │ │ ├── IPAddressExtensions.cs
│ │ │ ├── IntExtensions.cs
│ │ │ ├── LongExtensions.cs
│ │ │ ├── ObjectExtensions.cs
│ │ │ ├── RandomExtensions.cs
│ │ │ ├── ShortExtensions.cs
│ │ │ ├── StreamExtensions.cs
│ │ │ ├── StringExtensions.cs
│ │ │ ├── TestClass.cs
│ │ │ └── ValueTypeConvertExtensions.cs
│ │ ├── Files
│ │ │ ├── ExtensionAttach.cs
│ │ │ ├── FileDetector
│ │ │ │ ├── AbstractCompoundFileDetailDetector.cs
│ │ │ │ ├── AbstractFullRegexDetector.cs
│ │ │ │ ├── AbstractISOBaseMediaFileDetailDetector.cs
│ │ │ │ ├── AbstractRegexSignatureDetector.cs
│ │ │ │ ├── AbstractSignatureDetector.cs
│ │ │ │ ├── AbstractZipDetailDetector.cs
│ │ │ │ ├── Detectors
│ │ │ │ │ ├── ApkDetector.cs
│ │ │ │ │ ├── AudioVideoInterleaveDetector.cs
│ │ │ │ │ ├── BashShellScriptDetector.cs
│ │ │ │ │ ├── BinaryPropertyListDetector.cs
│ │ │ │ │ ├── BitmapDetector.cs
│ │ │ │ │ ├── Bzip2Detector.cs
│ │ │ │ │ ├── CabDetector.cs
│ │ │ │ │ ├── CertDetector.cs
│ │ │ │ │ ├── CompoundHWPDetector.cs
│ │ │ │ │ ├── ConfigurationDetector.cs
│ │ │ │ │ ├── CursorDetector.cs
│ │ │ │ │ ├── DLLDetector.cs
│ │ │ │ │ ├── DMGDetector.cs
│ │ │ │ │ ├── DOCXDetector.cs
│ │ │ │ │ ├── DirectDrawSurfaceFormatDetector.cs
│ │ │ │ │ ├── EXEDetector.cs
│ │ │ │ │ ├── EpubDetector.cs
│ │ │ │ │ ├── FLVDetector.cs
│ │ │ │ │ ├── FlacDetector.cs
│ │ │ │ │ ├── GifDetector.cs
│ │ │ │ │ ├── GzDetector.cs
│ │ │ │ │ ├── HWPDetector.cs
│ │ │ │ │ ├── ISODetector.cs
│ │ │ │ │ ├── IconDetector.cs
│ │ │ │ │ ├── InitializationDetector.cs
│ │ │ │ │ ├── JavaClassDetector.cs
│ │ │ │ │ ├── Jpeg2000Detector.cs
│ │ │ │ │ ├── JpegDetector.cs
│ │ │ │ │ ├── JpegXRDetector.cs
│ │ │ │ │ ├── KTXDetector.cs
│ │ │ │ │ ├── LzhDetector.cs
│ │ │ │ │ ├── M4ADetector.cs
│ │ │ │ │ ├── M4VDetector.cs
│ │ │ │ │ ├── MP3Detector.cs
│ │ │ │ │ ├── MP4Detector.cs
│ │ │ │ │ ├── MicrosoftExcelXLSDetector.cs
│ │ │ │ │ ├── MicrosoftInstallerDetector.cs
│ │ │ │ │ ├── MicrosoftPowerPointPPTDetector.cs
│ │ │ │ │ ├── MicrosoftWordDocDetector.cs
│ │ │ │ │ ├── MidiDetector.cs
│ │ │ │ │ ├── MikeOBrienPackDetector.cs
│ │ │ │ │ ├── OggDetector.cs
│ │ │ │ │ ├── OpenDocumentFormulaDetector.cs
│ │ │ │ │ ├── OpenDocumentGraphicsDetector.cs
│ │ │ │ │ ├── OpenDocumentPresentationDetector.cs
│ │ │ │ │ ├── OpenDocumentSpreadSheetDetector.cs
│ │ │ │ │ ├── OpenDocumentTextDetector.cs
│ │ │ │ │ ├── PAKArchiveDetector.cs
│ │ │ │ │ ├── PDBDetector.cs
│ │ │ │ │ ├── PFXDetector.cs
│ │ │ │ │ ├── PKMDetector.cs
│ │ │ │ │ ├── PPSXDetector.cs
│ │ │ │ │ ├── PPTXDetector.cs
│ │ │ │ │ ├── PdfDetector.cs
│ │ │ │ │ ├── PngDetector.cs
│ │ │ │ │ ├── PrePOSIXtarDetector.cs
│ │ │ │ │ ├── PsdDetector.cs
│ │ │ │ │ ├── QuakeArchiveDetector.cs
│ │ │ │ │ ├── QuickTimeDetector.cs
│ │ │ │ │ ├── REGDetector.cs
│ │ │ │ │ ├── RarDetector.cs
│ │ │ │ │ ├── RedhatPackageManagerPackageDetector.cs
│ │ │ │ │ ├── RichTextFormatDetector.cs
│ │ │ │ │ ├── SQLiteDetector.cs
│ │ │ │ │ ├── SRTDetector.cs
│ │ │ │ │ ├── ShockwaveFlashDetector.cs
│ │ │ │ │ ├── TextDetector.cs
│ │ │ │ │ ├── TgaDetector.cs
│ │ │ │ │ ├── ThumbsDBDetector.cs
│ │ │ │ │ ├── TiffDetector.cs
│ │ │ │ │ ├── UStarFormatTarDetector.cs
│ │ │ │ │ ├── VisualStudioSolutionDetector.cs
│ │ │ │ │ ├── WaveDetector.cs
│ │ │ │ │ ├── WebMDetector.cs
│ │ │ │ │ ├── WebPDetector.cs
│ │ │ │ │ ├── WindowsMemoryDumpDetector.cs
│ │ │ │ │ ├── WindowsShortcutDetector.cs
│ │ │ │ │ ├── XLSXDetector.cs
│ │ │ │ │ ├── XMLDetector.cs
│ │ │ │ │ ├── XarDetector.cs
│ │ │ │ │ ├── ZDetector.cs
│ │ │ │ │ ├── ZipDetector.cs
│ │ │ │ │ ├── _3GPDetector.cs
│ │ │ │ │ └── _7zDetector.cs
│ │ │ │ ├── FileSignatureDetector.cs
│ │ │ │ ├── FormatCategoryAttribute.cs
│ │ │ │ ├── IDetector.cs
│ │ │ │ └── InstantDetector.cs
│ │ │ ├── FileExt.cs
│ │ │ ├── INIFile.cs
│ │ │ └── SevenZipCompressor.cs
│ │ ├── Hardware
│ │ │ ├── BiosInfo.cs
│ │ │ ├── CPU_INFO.cs
│ │ │ ├── CpuInfo.cs
│ │ │ ├── DiskData.cs
│ │ │ ├── DiskInfo.cs
│ │ │ ├── MemoryInfo.cs
│ │ │ ├── NetData.cs
│ │ │ ├── RamInfo.cs
│ │ │ ├── SystemInfo.cs
│ │ │ ├── SystemtimeInfo.cs
│ │ │ └── Unit.cs
│ │ ├── Html
│ │ │ └── HtmlTools.cs
│ │ ├── Linq
│ │ │ └── LinqExtension.cs
│ │ ├── Logging
│ │ │ ├── LogInfo.cs
│ │ │ ├── LogLevel.cs
│ │ │ └── LogManager.cs
│ │ ├── Maths
│ │ │ ├── Point2D.cs
│ │ │ ├── RadarChart.cs
│ │ │ ├── RadarChartEngine.cs
│ │ │ └── Vector2D.cs
│ │ ├── Media
│ │ │ ├── IImageTransformer.cs
│ │ │ ├── ImageDetectExt.cs
│ │ │ ├── ImageFormat.cs
│ │ │ ├── ImageHasher.cs
│ │ │ ├── ImageSharpTransformer.cs
│ │ │ ├── ImageUtilities.cs
│ │ │ ├── ImageWatermarker.cs
│ │ │ ├── ThumbnailCutMode.cs
│ │ │ └── WatermarkPosition.cs
│ │ ├── Mime
│ │ │ ├── ContentType.cs
│ │ │ ├── DefaultMimeItems.cs
│ │ │ ├── IMimeMapper.cs
│ │ │ ├── MimeMapper.cs
│ │ │ └── MimeMappingItem.cs
│ │ ├── Models
│ │ │ ├── Circle.cs
│ │ │ ├── DateTimeRange.cs
│ │ │ ├── Email.cs
│ │ │ ├── EmailAddress.cs
│ │ │ ├── ITree.cs
│ │ │ ├── PagedList.cs
│ │ │ ├── Sphere.cs
│ │ │ ├── Tree.cs
│ │ │ └── TreeExtensions.cs
│ │ ├── Mvc
│ │ │ ├── ActionResults
│ │ │ │ ├── ResumeActionResultBase.cs
│ │ │ │ ├── ResumeFileContentResult.cs
│ │ │ │ ├── ResumeFilePathResult.cs
│ │ │ │ ├── ResumeFileResult.cs
│ │ │ │ ├── ResumeFileStreamResult.cs
│ │ │ │ └── ResumeRequest.cs
│ │ │ ├── ControllerExtension.cs
│ │ │ ├── HttpHeaders.cs
│ │ │ ├── Internal
│ │ │ │ └── ByteRange.cs
│ │ │ └── Mime
│ │ │ ├── ContentType.cs
│ │ │ ├── DefaultMimeItems.cs
│ │ │ ├── IMimeMapper.cs
│ │ │ ├── MimeMapper.cs
│ │ │ └── MimeMappingItem.cs
│ │ ├── Net
│ │ │ ├── CacheHelper.cs
│ │ │ ├── CookieHelper.cs
│ │ │ ├── FtpClient.cs
│ │ │ ├── MultiThreadDownloader.cs
│ │ │ ├── PartialDownloader.cs
│ │ │ └── WebExtension.cs
│ │ ├── NoSQL
│ │ │ ├── RedisConnectionManager.cs
│ │ │ └── RedisHelper.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── RandomSelector
│ │ │ ├── Extensions.cs
│ │ │ ├── MultipleSelector.cs
│ │ │ ├── SelectorBase.cs
│ │ │ ├── SelectorOptions.cs
│ │ │ ├── SingleSelector.cs
│ │ │ ├── WeightedItem.cs
│ │ │ └── WeightedSelector.cs
│ │ ├── Reflection
│ │ │ └── ReflectionUtil.cs
│ │ ├── Security
│ │ │ ├── Crc32.cs
│ │ │ ├── Crc64.cs
│ │ │ ├── Encrypt.cs
│ │ │ ├── HashEncode.cs
│ │ │ ├── RSA.cs
│ │ │ ├── RSACrypt.cs
│ │ │ ├── RsaKey.cs
│ │ │ ├── RsaKeyType.cs
│ │ │ └── RsaPem.cs
│ │ ├── Strings
│ │ │ ├── NumberFormater.cs
│ │ │ ├── SimHash.cs
│ │ │ ├── Template.cs
│ │ │ └── ValidateCode.cs
│ │ ├── Systems
│ │ │ ├── CompositeContractResolver.cs
│ │ │ ├── ConcurrentHashSet.cs
│ │ │ ├── ConcurrentLimitedQueue.cs
│ │ │ ├── DeserializeOnlyContractResolver.cs
│ │ │ ├── DeserializeOnlyJsonPropertyAttribute.cs
│ │ │ ├── Disposable.cs
│ │ │ ├── DisposableConcurrentDictionary.cs
│ │ │ ├── DisposableDictionary.cs
│ │ │ ├── EnumExt.cs
│ │ │ ├── FallbackJsonProperty.cs
│ │ │ ├── FallbackJsonPropertyResolver.cs
│ │ │ ├── HiPerfTimer.cs
│ │ │ ├── LimitedQueue.cs
│ │ │ ├── Lock.cs
│ │ │ ├── NullObject.cs
│ │ │ ├── NullableConcurrentDictionary.cs
│ │ │ ├── NullableDictionary.cs
│ │ │ ├── RedisLock.cs
│ │ │ ├── SerializeIgnoreAttribute.cs
│ │ │ ├── SnowFlake.cs
│ │ │ └── StopwatchHelper.cs
│ │ ├── Validator
│ │ │ ├── ComplexPassword.cs
│ │ │ ├── EnumOfAttribute.cs
│ │ │ ├── IsEmailAttribute.cs
│ │ │ ├── IsIPAddressAttribute.cs
│ │ │ ├── IsPhoneAttribute.cs
│ │ │ ├── MaxValueAttribute.cs
│ │ │ ├── MinItemsCountAttribute.cs
│ │ │ └── MinValueAttribute.cs
│ │ └── Win32
│ │ ├── Windows.cs
│ │ └── WindowsCommand.cs
│ ├── Newtonsoft.Json.13.0.1
│ │ ├── LICENSE.md
│ │ ├── Newtonsoft.Json.13.0.1.nupkg
│ │ ├── lib
│ │ │ ├── net20
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net35
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net40
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net45
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── netstandard1.0
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── netstandard1.3
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ └── netstandard2.0
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ └── packageIcon.png
│ ├── SqlSugar.5.1.3.34
│ │ ├── SqlSugar.5.1.3.34.nupkg
│ │ └── lib
│ │ └── SqlSugar.dll
│ ├── SqlSugar.5.1.4.71
│ │ ├── SqlSugar.5.1.4.71.nupkg
│ │ └── lib
│ │ └── SqlSugar.dll
│ └── System.ValueTuple.4.5.0
│ ├── LICENSE.TXT
│ ├── System.ValueTuple.4.5.0.nupkg
│ ├── THIRD-PARTY-NOTICES.TXT
│ ├── lib
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net461
│ │ │ ├── System.ValueTuple.dll
│ │ │ └── System.ValueTuple.xml
│ │ ├── net47
│ │ │ ├── System.ValueTuple.dll
│ │ │ └── System.ValueTuple.xml
│ │ ├── netcoreapp2.0
│ │ │ └── _._
│ │ ├── netstandard1.0
│ │ │ ├── System.ValueTuple.dll
│ │ │ └── System.ValueTuple.xml
│ │ ├── netstandard2.0
│ │ │ └── _._
│ │ ├── portable-net40 sl4 win8 wp8
│ │ │ ├── System.ValueTuple.dll
│ │ │ └── System.ValueTuple.xml
│ │ ├── uap10.0.16299
│ │ │ └── _._
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── ref
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net461
│ │ │ └── System.ValueTuple.dll
│ │ ├── net47
│ │ │ └── System.ValueTuple.dll
│ │ ├── netcoreapp2.0
│ │ │ └── _._
│ │ ├── netstandard2.0
│ │ │ └── _._
│ │ ├── portable-net40 sl4 win8 wp8
│ │ │ └── System.ValueTuple.dll
│ │ ├── uap10.0.16299
│ │ │ └── _._
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── useSharedDesignerContext.txt
│ └── version.txt
├── c# wifnrom 简单版宿舍管系统(可能有点不完整)菜单栏动态展示,Mysql版_winfrom mysql 宿舍管理系统桌面版.zip
└── 脚本
├── china_area.sql
└── woodhostel.sql
160 directories, 703 files
评论