System.Collections.NonGeneric 4.0.0-beta-23019
Provides classes that define older non-generic collections of objects, such as lists, queues, hash tables and dictionaries. Developers should prefer the generic collections in the System.Collections package.
Commonly Used Types:
System.Collections.ArrayList
System.Collections.Hashtable
System.Collections.CollectionBase
System.Collections.ReadOnlyCollectionBase
System.Collections.Stack
System.Collections.SortedList
System.Collections.DictionaryBase
System.Collections.Queue
System.Collections.Comparer
System.Collections.CaseInsensitiveComparer
Showing the top 20 packages that depend on System.Collections.NonGeneric.
Packages | Downloads |
---|---|
CodeProject.ObjectPool
A generic, concurrent, portable and flexible Object Pool for the .NET Framework, completely based on the Code Project article of Ofir Makmal (http://goo.gl/4qig6T).
Library is production ready and it is successfully working in real life systems.
Original source code has been modified, in order to introduce a Parameterized Object Pool, already drafted by Ofir Makmal in the comments of the article.
Moreover, a few unit tests have been added, in order to improve code reliability, and a lot of other small changes have also been applied.
Of course, all modified source code is freely available at the project URL of this package.
Many thanks to Ofir Makmal for his great work.
|
42 |
CodeProject.ObjectPool
A generic, concurrent, portable and flexible Object Pool for the .NET Framework, completely based on the Code Project article of Ofir Makmal (http://goo.gl/4qig6T).
Library is production ready and it is successfully working in real life systems.
Original source code has been modified, in order to introduce a Parameterized Object Pool, already drafted by Ofir Makmal in the comments of the article.
Moreover, a few unit tests have been added, in order to improve code reliability, and a lot of other small changes have also been applied.
Of course, all modified source code is freely available at the project URL of this package.
Many thanks to Ofir Makmal for his great work.
|
132 |
Dapper.StrongName
A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc..
|
45 |
Dapper.StrongName
A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc..
|
153 |
log4net
log4net is a tool to help the programmer output log statements to a variety of output targets. In case of problems with an application, it is helpful to enable logging so that the problem can be located. With log4net it is possible to enable logging at runtime without modifying the application binary. The log4net package is designed so that log statements can remain in shipped code without incurring a high performance cost. It follows that the speed of logging (or rather not logging) is crucial.
At the same time, log output can be so voluminous that it quickly becomes overwhelming. One of the distinctive features of log4net is the notion of hierarchical loggers. Using these loggers it is possible to selectively control which log statements are output at arbitrary granularity.
log4net is designed with two distinct goals in mind: speed and flexibility
|
45 |
log4net
log4net is a tool to help the programmer output log statements to a variety of output targets. In case of problems with an application, it is helpful to enable logging so that the problem can be located. With log4net it is possible to enable logging at runtime without modifying the application binary. The log4net package is designed so that log statements can remain in shipped code without incurring a high performance cost. It follows that the speed of logging (or rather not logging) is crucial.
At the same time, log output can be so voluminous that it quickly becomes overwhelming. One of the distinctive features of log4net is the notion of hierarchical loggers. Using these loggers it is possible to selectively control which log statements are output at arbitrary granularity.
log4net is designed with two distinct goals in mind: speed and flexibility
|
138 |
log4net
log4net is a tool to help the programmer output log statements to a variety of output targets.
In case of problems with an application, it is helpful to enable logging so that the problem
can be located. With log4net it is possible to enable logging at runtime without modifying the
application binary. The log4net package is designed so that log statements can remain in
shipped code without incurring a high performance cost. It follows that the speed of logging
(or rather not logging) is crucial.
At the same time, log output can be so voluminous that it quickly becomes overwhelming.
One of the distinctive features of log4net is the notion of hierarchical loggers.
Using these loggers it is possible to selectively control which log statements are output
at arbitrary granularity.
log4net is designed with two distinct goals in mind: speed and flexibility
|
47 |
Microsoft.Cci
Provides a portable version of the Microsoft.Cci library
|
50 |
Serilog
Simple .NET logging with fully-structured events
|
118 |
Serilog
Simple .NET logging with fully-structured events
|
135 |
Serilog
Simple .NET logging with fully-structured events
|
152 |
Serilog
Simple .NET logging with fully-structured events
|
156 |
Serilog
Simple .NET logging with fully-structured events
|
278 |
Serilog
Simple .NET logging with fully-structured events
|
1,391 |
StackExchange.Redis.StrongName
High performance Redis client, incorporating both synchronous and asynchronous usage.
|
43 |
System.Collections.Specialized
Provides older specialized non-generic collections; for example, a linked list dictionary, a bit vector, and collections that contain only strings.
Commonly Used Types:
System.Collections.Specialized.NameValueCollection
System.Collections.Specialized.NameObjectCollectionBase
System.Collections.Specialized.StringCollection
System.Collections.Specialized.IOrderedDictionary
System.Collections.Specialized.HybridDictionary
System.Collections.Specialized.OrderedDictionary
System.Collections.Specialized.ListDictionary
System.Collections.Specialized.StringDictionary
System.Collections.Specialized.BitVector32
When using NuGet 3.x this package requires at least version 3.4.
|
901 |
System.ComponentModel.TypeConverter
Provides the System.ComponentModel.TypeConverter class, which represents a unified way of converting types of values to other types.
Commonly Used Types:
System.ComponentModel.TypeConverter
System.ComponentModel.TypeConverterAttribute
System.ComponentModel.PropertyDescriptor
System.ComponentModel.StringConverter
System.ComponentModel.ITypeDescriptorContext
System.ComponentModel.EnumConverter
System.ComponentModel.TypeDescriptor
System.ComponentModel.Int32Converter
System.ComponentModel.BooleanConverter
System.ComponentModel.DoubleConverter
When using NuGet 3.x this package requires at least version 3.4.
|
887 |
System.Net.WebHeaderCollection
Provides the System.Net.WebHeaderCollection class, which stores protocol headers associated with a request or response.
Commonly Used Types:
System.Net.HttpRequestHeader
System.Net.HttpResponseHeader
System.Net.WebHeaderCollection
|
45 |
Thrower
Fully managed library providing convenience methods to perform argument checks. Thrower allows to write preconditions in a pretty lean way, which reduces the clutter at the beginning of each method by removing the need to use the cumbersome 'if true then throw ex' required to validate parameters. For example, a validation against null becomes 'Raise.ArgumentNullException.IfIsNull(myParam)', while a generic validation may be written as 'Raise.ArgumentException.If(condition)'. Moreover, this library embeds a portable copy of Marc Gravell's FastMember and Jeffrey Stedfast's EmailValidation libraries.
|
168 |
Thrower
Fully managed library providing convenience methods to perform argument checks.
Thrower allows to write preconditions in a pretty lean way, which reduces the clutter at the beginning of each method by removing the need to use the cumbersome "if true then throw ex" required to validate parameters.
For example, a validation against null becomes "Raise.ArgumentNullException.IfIsNull(myParam)", while a generic validation may be written as "Raise.ArgumentException.If(condition)".
Moreover, this library embeds a portable copy of Marc Gravell's FastMember and Jeffrey Stedfast's EmailValidation libraries.
|
136 |
.NETPlatform 5.0
- System.Runtime (>= 4.0.20-beta-23019)
- System.Globalization (>= 4.0.10-beta-23019)
- System.Resources.ResourceManager (>= 4.0.0-beta-23019)
- System.Diagnostics.Debug (>= 4.0.10-beta-23019)
- System.Threading (>= 4.0.10-beta-23019)
- System.Runtime.Extensions (>= 4.0.10-beta-23019)
Version | Downloads | Last updated |
---|---|---|
4.3.0 | 948 | 02/10/2020 |
4.3.0-preview1-24530-04 | 24 | 02/08/2024 |
4.0.1 | 114 | 07/05/2020 |
4.0.1-rc2-24027 | 27 | 02/08/2024 |
4.0.1-beta-23516 | 22 | 02/08/2024 |
4.0.1-beta-23409 | 31 | 02/08/2024 |
4.0.1-beta-23225 | 23 | 02/08/2024 |
4.0.0 | 25 | 02/08/2024 |
4.0.0-beta-23109 | 40 | 02/08/2024 |
4.0.0-beta-23019 | 25 | 02/08/2024 |
4.0.0-beta-22816 | 21 | 02/08/2024 |
4.0.0-beta-22605 | 24 | 02/08/2024 |
4.0.0-beta-22416 | 24 | 02/08/2024 |
4.0.0-beta-22231 | 22 | 02/08/2024 |