• 大小: 7.04MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-26
  • 语言: C#
  • 标签: C#    C#类  常用类  

资源简介

最全的C#常用开发类,cs文件,使用起来非常方便。大约有100多个常用类,

资源截图

代码片段和文件信息

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  2014-09-19 22:57  Core.Collections\
     目录           0  2014-09-19 22:57  Core.Collections\bin\
     目录           0  2014-09-19 22:57  Core.Collections\bin\Debug\
     文件       32768  2014-11-21 16:12  Core.Collections\bin\Debug\Core.Collections.dll
     文件      122368  2014-11-21 16:12  Core.Collections\bin\Debug\Core.Collections.pdb
     目录           0  2014-09-29 09:31  Core.Collections\bin\Release\
     目录           0  2014-09-19 22:57  Core.Collections\Collections\
     文件       13418  2014-10-08 10:56  Core.Collections\Collections\Dictionary.cs
     文件         532  2014-10-08 10:56  Core.Collections\Collections\ICloneable.cs
     文件        5269  2014-10-08 10:56  Core.Collections\Collections\List.cs
     文件       27384  2014-10-08 10:56  Core.Collections\Collections\OrderedDictionary.cs
     文件        6659  2014-10-08 10:56  Core.Collections\Collections\OrderedDictionaryEnumerator.cs
     文件        5251  2014-10-08 10:56  Core.Collections\Collections\SortHelper.cs
     文件       13617  2014-10-08 10:56  Core.Collections\Collections\SyncDictionary.cs
     文件       43901  2014-10-08 10:56  Core.Collections\Collections\SyncList.cs
     文件       13511  2014-10-08 10:56  Core.Collections\Collections\SyncOrderedDictionary.cs
     文件        7352  2014-10-08 10:56  Core.Collections\Collections\ThreadSafeDictionary.cs
     文件        5310  2014-10-08 10:56  Core.Collections\Collections\ThreadSafeSortedList.cs
     文件        2917  2014-09-29 09:58  Core.Collections\Core.Collections.csproj
     目录           0  2014-09-19 22:57  Core.Collections\obj\
     目录           0  2014-09-19 22:57  Core.Collections\obj\Debug\
     文件        1070  2014-11-21 16:12  Core.Collections\obj\Debug\Core.Collections.csproj.FileListAbsolute.txt
     文件       32768  2014-11-21 16:12  Core.Collections\obj\Debug\Core.Collections.dll
     文件      122368  2014-11-21 16:12  Core.Collections\obj\Debug\Core.Collections.pdb
     文件        5611  2014-12-03 08:51  Core.Collections\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     目录           0  2014-09-19 22:57  Core.Collections\obj\Debug\TempPE\
     目录           0  2014-09-19 22:57  Core.Collections\Properties\
     文件        1382  2014-09-19 22:57  Core.Collections\Properties\AssemblyInfo.cs
     目录           0  2014-09-29 08:20  Core.Common\
     目录           0  2014-09-29 08:21  Core.Common\bin\
     目录           0  2014-09-29 08:21  Core.Common\bin\Debug\
............此处省略600个文件信息

评论

共有 条评论