在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → C#常用类库最新版源码.zip

C#常用类库最新版源码.zip

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:7.44M
  • 下载次数:14
  • 浏览次数:121
  • 发布时间:2020-10-27
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
C#常用类库最新版源码.zip
【实例截图】
【核心代码】
C常用类库最新版源码
├── 1.bmp
├── C#常用类库合集 100 完整版
│   ├── Backup
│   │   ├── DotNetUtilities
│   │   │   ├── center.aspx
│   │   │   ├── center.aspx.cs
│   │   │   ├── center.aspx.designer.cs
│   │   │   ├── Commons
│   │   │   │   ├── WebString.aspx
│   │   │   │   ├── WebString.aspx.cs
│   │   │   │   └── WebString.aspx.designer.cs
│   │   │   ├── css
│   │   │   │   └── css.css
│   │   │   ├── Default.aspx
│   │   │   ├── Default.aspx.cs
│   │   │   ├── Default.aspx.designer.cs
│   │   │   ├── DotNetUtilities.csproj
│   │   │   ├── DotNetUtilities.csproj.user
│   │   │   ├── images
│   │   │   │   ├── del_tit.jpg
│   │   │   │   ├── linkarrow.gif
│   │   │   │   ├── menu_bg.gif
│   │   │   │   ├── menu_bg_hover.gif
│   │   │   │   ├── menu_sub_icon.gif
│   │   │   │   └── plus_bg.jpg
│   │   │   ├── Index.aspx
│   │   │   ├── Index.aspx.cs
│   │   │   ├── Index.aspx.designer.cs
│   │   │   ├── js
│   │   │   │   └── sdmenu.js
│   │   │   ├── Left.aspx
│   │   │   ├── Left.aspx.cs
│   │   │   ├── Left.aspx.designer.cs
│   │   │   ├── Main.aspx
│   │   │   ├── Main.aspx.cs
│   │   │   ├── Main.aspx.designer.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Top.aspx
│   │   │   ├── Top.aspx.cs
│   │   │   ├── Top.aspx.designer.cs
│   │   │   ├── Web.config
│   │   │   ├── Web.Debug.config
│   │   │   └── Web.Release.config
│   │   └── DotNetUtilities.sln
│   ├── Core.Collections
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Core.Collections.dll
│   │   │   └── Core.Collections.pdb
│   │   ├── Collections
│   │   │   ├── Dictionary.cs
│   │   │   ├── ICloneable.cs
│   │   │   ├── List.cs
│   │   │   ├── OrderedDictionary.cs
│   │   │   ├── OrderedDictionaryEnumerator.cs
│   │   │   ├── SortHelper.cs
│   │   │   ├── SyncDictionary.cs
│   │   │   ├── SyncList.cs
│   │   │   ├── SyncOrderedDictionary.cs
│   │   │   ├── ThreadSafeDictionary.cs
│   │   │   └── ThreadSafeSortedList.cs
│   │   ├── Core.Collections.csproj
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Core.Collections.csproj.FileListAbsolute.txt
│   │   │   ├── Core.Collections.csprojResolveAssemblyReference.cache
│   │   │   ├── Core.Collections.dll
│   │   │   ├── Core.Collections.pdb
│   │   │   └── DesignTimeResolveAssemblyReferencesInput.cache
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Core.Common
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Core.Common.dll
│   │   │   ├── Core.Common.pdb
│   │   │   ├── Core.Web.dll
│   │   │   ├── Core.Web.pdb
│   │   │   └── log4net.dll
│   │   ├── ConfigHelper.cs
│   │   ├── Core.Common.csproj
│   │   ├── CRCUtils.cs
│   │   ├── EmailHelper.cs
│   │   ├── EnumHelper.cs
│   │   ├── EnumUtils.cs
│   │   ├── IDCardHelper.cs
│   │   ├── IdentifyEncoding.cs
│   │   ├── LogHelper.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Core.Common.csproj.FileListAbsolute.txt
│   │   │   ├── Core.Common.csprojResolveAssemblyReference.cache
│   │   │   ├── Core.Common.dll
│   │   │   ├── Core.Common.pdb
│   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   └── ResolveAssemblyReference.cache
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── RMB.cs
│   │   ├── SQLInjectionHelper.cs
│   │   ├── SysHelper.cs
│   │   ├── Tools.cs
│   │   ├── TypeTools.cs
│   │   ├── UIConstants.cs
│   │   ├── URLHelper.cs
│   │   ├── User.cs
│   │   ├── 分词辅助类
│   │   │   └── SegList.cs
│   │   ├── 加密解密
│   │   │   ├── AESEncode.cs
│   │   │   ├── Base64Util.cs
│   │   │   ├── DEncrypt.cs
│   │   │   ├── DESEncrypt.cs
│   │   │   ├── Encrypt.cs
│   │   │   ├── HashEncode.cs
│   │   │   ├── MD5Util.cs
│   │   │   ├── MySecurity.cs
│   │   │   ├── RSACryption.cs
│   │   │   └── RSASecurityHelper.cs
│   │   ├── 反射
│   │   │   ├── Reflect.cs
│   │   │   ├── ReflectHelper.cs
│   │   │   └── ReflectionUtil.cs
│   │   ├── 字符串
│   │   │   ├── BytesTools.cs
│   │   │   ├── ConvertHelper.cs
│   │   │   ├── StringConstants.cs
│   │   │   ├── StringHelper.cs
│   │   │   ├── StringListHelp.cs
│   │   │   └── UnicodeHelper.cs
│   │   ├── 序列化
│   │   │   ├── Serialize.cs
│   │   │   ├── SerializeHelper.cs
│   │   │   └── Serializer.cs
│   │   ├── 日历
│   │   │   ├── CCalendarData.xml
│   │   │   ├── ChineseCalendar.cs
│   │   │   ├── CNCalendar.cs
│   │   │   └── CNDateHelper.cs
│   │   ├── 时间操作类
│   │   │   ├── DateTimeHelper.cs
│   │   │   ├── DateUtil.cs
│   │   │   ├── MyDateTime.cs
│   │   │   └── TimeHelper.cs
│   │   ├── 条形码
│   │   │   └── BarCodeToHTML.cs
│   │   ├── 正则表达式
│   │   │   └── RegexHelper.cs
│   │   ├── 汉字转拼音
│   │   │   ├── PinYin.cs
│   │   │   └── PinYinUtil.cs
│   │   ├── 运算
│   │   │   ├── FormulaCalculator.cs
│   │   │   └── FormulaExpress.cs
│   │   ├── 随机数
│   │   │   ├── RandomChinese.cs
│   │   │   └── RandomHelper.cs
│   │   ├── 音频视频转换类
│   │   │   ├── MediaHandler.cs
│   │   │   └── VideoConvert.cs
│   │   └── 验证码
│   │   ├── Captcha.cs
│   │   ├── UnCodebase.cs
│   │   ├── ValidateImage.cs
│   │   ├── ValidateImg.cs
│   │   └── YZMHelper.cs
│   ├── Core.DBUtility
│   │   ├── AppConfig.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Core.DBUtility.dll
│   │   │   └── Core.DBUtility.pdb
│   │   ├── Core.DBUtility.csproj
│   │   ├── Database
│   │   │   ├── DataTableHelper.cs
│   │   │   ├── SqlHelper.cs
│   │   │   └── SqlHelper备用.cs
│   │   ├── DatabaseInfo.cs
│   │   ├── DBTools
│   │   │   ├── DbHelperOleDb.cs
│   │   │   ├── JetAccessUtil.cs
│   │   │   ├── OleDbHelper.cs
│   │   │   ├── PageHelper.cs
│   │   │   ├── SearchCondition.cs
│   │   │   ├── SearchInfo.cs
│   │   │   ├── SmartDataReader.cs
│   │   │   └── SqlScriptHelper.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Core.DBUtility.dll
│   │   │   ├── Core.DBUtility.pdb
│   │   │   └── DesignTimeResolveAssemblyReferencesInput.cache
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Core.Drawing
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Core.Drawing.dll
│   │   │   ├── Core.Drawing.pdb
│   │   │   └── itextsharp.dll
│   │   ├── Core.Drawing.csproj
│   │   ├── ImageHelper.cs
│   │   ├── MyColors.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Core.Drawing.dll
│   │   │   ├── Core.Drawing.pdb
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   └── ResolveAssemblyReference.cache
│   │   ├── PDF
│   │   │   ├── PDFOperation.cs
│   │   │   └── PSD2swfHelper.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── ͼƬ
│   │   ├── ByteImageConvertor.cs
│   │   ├── ImageClass.cs
│   │   ├── ImageDown.cs
│   │   ├── ImageUpload.cs
│   │   ├── LZWDecoder.cs
│   │   └── PicDeal.cs
│   ├── Core.Email
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Core.Email.dll
│   │   │   └── Core.Email.pdb
│   │   ├── Core.Email.csproj
│   │   ├── Mime
│   │   │   ├── MediaTypes.cs
│   │   │   ├── MimeEntity.cs
│   │   │   ├── MimeHeaders.cs
│   │   │   ├── MimeReader.cs
│   │   │   └── QuotedPrintableEncoding.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Core.Email.dll
│   │   │   ├── Core.Email.pdb
│   │   │   └── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── 邮件
│   │   │   ├── MailHelper.cs
│   │   │   ├── MailPoper.cs
│   │   │   ├── MailSender.cs
│   │   │   └── SmtpServerHelper.cs
│   │   └── 邮件2
│   │   ├── ConnectCommand.cs
│   │   ├── ConnectResponse.cs
│   │   ├── DeleCommand.cs
│   │   ├── ListCommand.cs
│   │   ├── ListResponse.cs
│   │   ├── MailHeaders.cs
│   │   ├── MailMessageEx.cs
│   │   ├── NoopCommand.cs
│   │   ├── PassCommand.cs
│   │   ├── Pop3Client.cs
│   │   ├── Pop3Command.cs
│   │   ├── Pop3Commands.cs
│   │   ├── Pop3Exception.cs
│   │   ├── Pop3ListItem.cs
│   │   ├── Pop3Response.cs
│   │   ├── Pop3Responses.cs
│   │   ├── Pop3State.cs
│   │   ├── QuitCommand.cs
│   │   ├── RetrCommand.cs
│   │   ├── RetrResponse.cs
│   │   ├── RsetCommand.cs
│   │   ├── StatCommand.cs
│   │   ├── Stat.cs
│   │   ├── StatResponse.cs
│   │   ├── TopCommand.cs
│   │   └── UserCommand.cs
│   ├── Core.Flie
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Common.dll
│   │   │   ├── Common.pdb
│   │   │   ├── Core.Flie.dll
│   │   │   ├── Core.Flie.pdb
│   │   │   └── log4net.dll
│   │   ├── Core.Flie.csproj
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Core.Flie.dll
│   │   │   ├── Core.Flie.pdb
│   │   │   └── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── ShellIcon.cs
│   ├── Core.Html
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Core.Html.dll
│   │   │   └── Core.Html.pdb
│   │   ├── Core.Html.csproj
│   │   ├── HtmlHelper.cs
│   │   ├── HtmlPager.cs
│   │   ├── HtmlTools.cs
│   │   ├── HtmlUtils.cs
│   │   ├── ListBuilder.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Core.Html.dll
│   │   │   ├── Core.Html.pdb
│   │   │   └── DesignTimeResolveAssemblyReferencesInput.cache
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Core.IO
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Core.IO.dll
│   │   │   └── Core.IO.pdb
│   │   ├── Core.IO.csproj
│   │   ├── CSV文件转换
│   │   │   └── CsvHelper.cs
│   │   ├── DESEncrypt.cs
│   │   ├── ExtensionAttachUtil.cs
│   │   ├── FileAssociationsHelper.cs
│   │   ├── FileDialogHelper.cs
│   │   ├── FileHelper.cs
│   │   ├── FileTreeOperate.cs
│   │   ├── FileUtils.cs
│   │   ├── INIFileHelper.cs
│   │   ├── IsolatedStorageHelper.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Core.IO.dll
│   │   │   ├── Core.IO.pdb
│   │   │   └── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── ShellIcon.cs
│   │   ├── UIConstants.cs
│   │   └── 上传下载
│   │   ├── FileDown.cs
│   │   ├── FileUp.cs
│   │   ├── HtmlInputFileControl.cs
│   │   └── HttpUpload.cs
│   ├── Core.Json
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Core.Json.dll
│   │   │   └── Core.Json.pdb
│   │   ├── ConvertJson.cs
│   │   ├── Core.Json.csproj
│   │   ├── Json.cs
│   │   ├── JsonData.cs
│   │   ├── JsonHelper.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Core.Json.dll
│   │   │   ├── Core.Json.pdb
│   │   │   └── DesignTimeResolveAssemblyReferencesInput.cache
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Core.Net
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Core.Net.dll
│   │   │   ├── Core.Net.pdb
│   │   │   └── Core.Net_Secure
│   │   │   ├── Core.Net_1.0.0.0-2.nrmap
│   │   │   ├── Core.Net_1.0.0.0-3.nrmap
│   │   │   ├── Core.Net_1.0.0.0-4.nrmap
│   │   │   ├── Core.Net_1.0.0.0.nrmap
│   │   │   ├── Core.Net.dll
│   │   │   └── Core.Net.pdb
│   │   ├── Core.Net.csproj
│   │   ├── FTP
│   │   │   ├── FTPClient.cs
│   │   │   ├── FTPHelper.cs
│   │   │   └── FTPOperater.cs
│   │   ├── HttpCode.cs
│   │   ├── HttpHelper.cs
│   │   ├── HttpProc.cs
│   │   ├── HttpWebRequestHelper.cs
│   │   ├── IpHelper.cs
│   │   ├── NetHelper.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Core.Net.dll
│   │   │   ├── Core.Net.pdb
│   │   │   └── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── ProxyHelper.cs
│   │   ├── RequestHelp.cs
│   │   └── SmtpMail.cs
│   ├── Core.Office
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── COM.Excel.dll
│   │   │   ├── Core.Office.dll
│   │   │   ├── Core.Office.pdb
│   │   │   └── OWC10Chart.dll
│   │   ├── Chart图形
│   │   │   ├── Assistant.cs
│   │   │   └── OWCChart11.cs
│   │   ├── Core.Office.csproj
│   │   ├── ExcelHelper.cs
│   │   ├── Export2Excel.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Core.Office.dll
│   │   │   ├── Core.Office.pdb
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   └── ResolveAssemblyReference.cache
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── WordCombineUtil.cs
│   │   └── 导出Excel
│   │   ├── DataToExcel.cs
│   │   ├── ExportExcel.cs
│   │   └── GridViewExport.cs
│   ├── Core.Systems
│   │   ├── ADHelp.cs
│   │   ├── Api
│   │   │   ├── API.cs
│   │   │   ├── Mac.cs
│   │   │   ├── ResourcesApi.cs
│   │   │   ├── Win32Private.cs
│   │   │   └── Win32Public.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Core.Systems.dll
│   │   │   └── Core.Systems.pdb
│   │   ├── CmdUtil.cs
│   │   ├── Core.Systems.csproj
│   │   ├── CultureInfoUtil.cs
│   │   ├── Device
│   │   │   ├── AudioHelper.cs
│   │   │   ├── Camera.cs
│   │   │   ├── ClipboardHelper.cs
│   │   │   ├── Computer.cs
│   │   │   ├── FingerprintHelper.cs
│   │   │   ├── HardwareInfoHelper.cs
│   │   │   ├── KeyboardHelper.cs
│   │   │   ├── KeyboardHook.cs
│   │   │   ├── MouseHelper.cs
│   │   │   ├── MouseHook.cs
│   │   │   └── MP3Helper.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Core.Systems.dll
│   │   │   ├── Core.Systems.pdb
│   │   │   └── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── RegistryHelper.cs
│   │   ├── ResourceManager.cs
│   │   ├── ResourceManagerWrapper.cs
│   │   ├── Resources.cs
│   │   └── Sample.xml
│   ├── Core.Thread
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Core.Thread.dll
│   │   │   └── Core.Thread.pdb
│   │   ├── Core.Threads.csproj
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Core.Thread.dll
│   │   │   ├── Core.Thread.pdb
│   │   │   └── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── Threading
│   │   ├── AbortableThreadPool.cs
│   │   ├── DelegateHelper.cs
│   │   ├── DisposableObject.cs
│   │   ├── DisposeState.cs
│   │   ├── QueuedBackgroundWorker.cs
│   │   ├── QueuedBackgroundWorkerEvents.cs
│   │   ├── QueueServer.cs
│   │   ├── TargetInfo.cs
│   │   ├── ThreadHelper.cs
│   │   ├── ThreadPoolHelper.cs
│   │   ├── ThreadSafeObjectProvider.cs
│   │   ├── Timer.cs
│   │   ├── TimerHelper.cs
│   │   ├── WorkItem.cs
│   │   └── WorkItemStatus.cs
│   ├── Core.Web
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Core.Web.dll
│   │   │   └── Core.Web.pdb
│   │   ├── CacheManage
│   │   │   ├── CacheProvider.cs
│   │   │   ├── CacheUtil.cs
│   │   │   ├── ICache.cs
│   │   │   ├── MemCached
│   │   │   │   ├── HashAlgorithms.cs
│   │   │   │   ├── LogAdapter.cs
│   │   │   │   ├── MemcachedClient.cs
│   │   │   │   ├── MemcachedClientException.cs
│   │   │   │   ├── PooledSocket.cs
│   │   │   │   ├── Serializer.cs
│   │   │   │   ├── ServerPool.cs
│   │   │   │   └── SocketPool.cs
│   │   │   ├── MemCached.cs
│   │   │   └── WebCache.cs
│   │   ├── ControlHelp.cs
│   │   ├── Cookie&Session&Cache
│   │   │   ├── CacheHelper.cs
│   │   │   ├── CookieHelper.cs
│   │   │   ├── SessionAdapter.cs
│   │   │   └── SessionHelper.cs
│   │   ├── Core.Web.csproj
│   │   ├── JavaScript相关
│   │   │   ├── JavaScriptHelper.cs
│   │   │   └── JavaScriptMinifier.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Core.Web.csproj.FileListAbsolute.txt
│   │   │   ├── Core.Web.csprojResolveAssemblyReference.cache
│   │   │   ├── Core.Web.dll
│   │   │   ├── Core.Web.pdb
│   │   │   └── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── PageControlHelper.cs
│   │   ├── PageListUtil.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── QueryString.cs
│   │   ├── UBB.cs
│   │   ├── WebSitePathHelper.cs
│   │   └── 数据控件
│   │   ├── BindDataControl.cs
│   │   ├── GridViewHelper.cs
│   │   ├── WebControl.cs
│   │   └── WebControlHelper.cs
│   ├── Core.XML
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Core.XML.dll
│   │   │   └── Core.XML.pdb
│   │   ├── Core.XML.csproj
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Core.XML.csproj.ResolveComReference.cache
│   │   │   ├── Core.XML.dll
│   │   │   ├── Core.XML.pdb
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   └── Interop.MSXML2.dll
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── XmlConvertor.cs
│   │   ├── XmlHelp.cs
│   │   ├── XmlHelper.cs
│   │   └── XMLProcess.cs
│   ├── Core.Zip
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Core.Zip.dll
│   │   │   ├── Core.Zip.pdb
│   │   │   └── ICSharpCode.SharpZipLib.dll
│   │   ├── Core.Zip.csproj
│   │   ├── GZipHandler.cs
│   │   ├── GZipUtil.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Core.Zip.dll
│   │   │   ├── Core.Zip.pdb
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   └── ResolveAssemblyReference.cache
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── SharpZip.cs
│   │   └── ZipHelper.cs
│   ├── DLL
│   │   ├── COM.Excel.dll
│   │   ├── Excel.dll
│   │   ├── ICSharpCode.SharpZipLib.dll
│   │   ├── itextsharp.dll
│   │   ├── log4net.dll
│   │   ├── Microsoft.Office.Interop.Owc11.dll
│   │   ├── Microsoft.Web.UI.WebControls.dll
│   │   └── OWC10Chart.dll
│   ├── DotNetUtilities
│   │   ├── bin
│   │   │   ├── Core.Common.dll
│   │   │   ├── Core.Common.pdb
│   │   │   ├── Core.Web.dll
│   │   │   ├── Core.Web.pdb
│   │   │   ├── DotNetUtilities.dll
│   │   │   ├── DotNetUtilities.dll.config
│   │   │   ├── DotNetUtilities.pdb
│   │   │   └── log4net.dll
│   │   ├── center.aspx
│   │   ├── center.aspx.cs
│   │   ├── center.aspx.designer.cs
│   │   ├── Commons
│   │   │   ├── WebString.aspx
│   │   │   ├── WebString.aspx.cs
│   │   │   └── WebString.aspx.designer.cs
│   │   ├── css
│   │   │   └── css.css
│   │   ├── Default.aspx
│   │   ├── Default.aspx.cs
│   │   ├── Default.aspx.designer.cs
│   │   ├── DotNetUtilities.csproj
│   │   ├── DotNetUtilities.csproj.user
│   │   ├── images
│   │   │   ├── del_tit.jpg
│   │   │   ├── linkarrow.gif
│   │   │   ├── menu_bg.gif
│   │   │   ├── menu_bg_hover.gif
│   │   │   ├── menu_sub_icon.gif
│   │   │   └── plus_bg.jpg
│   │   ├── Index.aspx
│   │   ├── Index.aspx.cs
│   │   ├── Index.aspx.designer.cs
│   │   ├── js
│   │   │   └── sdmenu.js
│   │   ├── Left.aspx
│   │   ├── Left.aspx.cs
│   │   ├── Left.aspx.designer.cs
│   │   ├── Main.aspx
│   │   ├── Main.aspx.cs
│   │   ├── Main.aspx.designer.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── DotNetUtilities.csproj.FileListAbsolute.txt
│   │   │   ├── DotNetUtilities.csprojResolveAssemblyReference.cache
│   │   │   ├── DotNetUtilities.dll
│   │   │   ├── DotNetUtilities.pdb
│   │   │   └── ResolveAssemblyReference.cache
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Top.aspx
│   │   ├── Top.aspx.cs
│   │   ├── Top.aspx.designer.cs
│   │   ├── Web.config
│   │   ├── Web.Debug.config
│   │   └── Web.Release.config
│   ├── DotNetUtilities.sln
│   ├── DotNetUtilities.sln.DotSettings.user
│   └── UpgradeLog.htm
└── 新建 XLSX 工作表.xlsx

150 directories, 492 files

标签:

实例下载地址

C#常用类库最新版源码.zip

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警