• 大小: 7.01MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-31
  • 语言: C#
  • 标签: C#基类库  类库  帮助类  

资源简介

VS2010打开的整个类库工程,直接生成dll就可使用。C#常用类库合集,小编整理的,里面都是源码,有excel导入导出的,Json类库,条码类库,全都是精品,绝对是你想要的,大家快来下载。类库会在编译之后生成一个dll文件,然后其他的项目可以引用这个dll。这个大家都是知道的。

资源截图

代码片段和文件信息

using System;
using System.Runtime.Serialization;
using System.Security.Permissions;
using System.xml;
using System.xml.Schema;
using System.xml.Serialization;
using Generics = System.Collections.Generic;

namespace Core.Collections
{
    
    [Serializable()]
    [xmlRoot(“dictionary“)]
    public class Dictionary : 
        System.Collections.Generic.Dictionary ICloneable 
        ICloneable> IxmlSerializable
    {

        #region Constructors
        /// 
        /// Initializes a new instance of the 
        ///  class that 
        /// is empty has the default initial capacity and uses the 
        /// default equality comparer for the key type.
        /// 

     
        public Dictionary() : base() { } // Dictionary

        /// 
        /// Initializes a new instance of the 
        ///  class that contains elements copied from the specified  and uses the default equality comparer for the key type.
        /// 

        /// The dictionary.
        /// dictionarytable contains one or more duplicate values.
        /// dictionarytable is null.
        public Dictionary(Generics.IDictionary dictionary) : base(dictionary) { } // Dictionary

        /// Initializes a new instance of the 
        ///  class that is empty has the default initial capacity and uses the specified .

        /// The  implementation to use when comparing values or null to use the default  for the type of the key.
        public Dictionary(Generics.IEqualityComparer comparer) : base(comparer) { } // Dictionary

        /// Initializes a new instance of the 
        ///  class that is empty has the specified initial capacity and uses the default equality comparer for the key type.

        /// The initial number of elements that the  can contain.
        /// capacity is less than 0.
        public Dictionary(int capacity) : base(capacity) { } // Dictionary

        /// 

        /// Initializes a new instance of the 
        ///  class that contains elements copied

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-01-09 23:02  Core.Collections\
     目录           0  2017-01-09 23:02  Core.Collections\Collections\
     目录           0  2017-01-09 23:02  Core.Collections\Properties\
     目录           0  2017-01-09 23:02  Core.Collections\bin\
     目录           0  2017-01-09 23:02  Core.Collections\bin\Debug\
     目录           0  2017-01-09 23:02  Core.Collections\bin\Release\
     目录           0  2017-01-09 23:02  Core.Collections\obj\
     目录           0  2017-01-09 23:02  Core.Collections\obj\Debug\
     目录           0  2017-01-09 23:02  Core.Collections\obj\Debug\TempPE\
     目录           0  2017-01-09 23:02  Core.Common\
     目录           0  2017-01-09 23:02  Core.Common\Properties\
     目录           0  2017-01-09 23:02  Core.Common\bin\
     目录           0  2017-01-09 23:02  Core.Common\bin\Debug\
     目录           0  2017-01-09 23:02  Core.Common\obj\
     目录           0  2017-01-09 23:02  Core.Common\obj\Debug\
     目录           0  2017-01-09 23:02  Core.Common\分词辅助类\
     目录           0  2017-01-09 23:02  Core.Common\加密解密\
     目录           0  2017-01-09 23:02  Core.Common\反射\
     目录           0  2017-01-09 23:02  Core.Common\字符串\
     目录           0  2017-01-09 23:02  Core.Common\序列化\
     目录           0  2017-01-09 23:02  Core.Common\日历\
     目录           0  2017-01-09 23:02  Core.Common\时间操作类\
     目录           0  2017-01-09 23:02  Core.Common\条形码\
     目录           0  2017-01-09 23:02  Core.Common\正则表达式\
     目录           0  2017-01-09 23:02  Core.Common\汉字转拼音\
     目录           0  2017-01-09 23:02  Core.Common\运算\
     目录           0  2017-01-09 23:02  Core.Common\随机数\
     目录           0  2017-01-09 23:02  Core.Common\音频视频转换类\
     目录           0  2017-01-09 23:02  Core.Common\验证码\
     目录           0  2017-01-09 23:02  Core.DBUtility\
     目录           0  2017-01-09 23:02  Core.DBUtility\DBTools\
............此处省略569个文件信息

评论

共有 条评论