Skip to content

jimkropa/misc.corlib

Repository files navigation

This is a work in progress as of March, 2016.

The complete draft of the readme follows these summary lists of completed and incomplete parts. Check back here for updates and thanks for your interest!

More or Less Ready for Release:

  • Tests, documentation, and implementation of PagingInfo and related classes
  • Tests, documentation, and implementation of Collections.Generic classes
  • Implementation of ConvertByteArray and ConvertEncodedString static extension methods (pending tests)
  • Documentation and implementation of FormatString static extension methods (pending tests)

TODO:

  • Tests and documentation of ConvertByteArray and ConvertEncodedString
  • Final decisions about the contracts for Encryptor and Decryptor and their factory methods
  • Tests, documentation, and implementation of the rest of the Cryptography namespace
  • Tests of FormatString
  • Tests, documentation, and implementation of NameValueCollectionExtensions
  • Tests, documentation, and implementation of Enum utilities
  • Refactor parts of Cryptography to use bitwise functions from Enum utilities
  • Create builds for .NET 2.0, 4.0, 5.0, and Mono
  • Deploy as public NuGet package

misc.corlib

is a small assortment of adapters and extensions from mscorlib.dll

These are some useful types that I've rewritten enough times to not want to write them over again, so I have composed them into this open source project. ‑‑KRopa.

It is intended for eventual free distribution as a public NuGet package, but remains a pre‑release work in progress for now.

Features

This library consists of:

Iterations of this library have a longer history than its public GitHub edition, and along the way parts of it have been made obsolete by successive releases of the .NET Framework.

Obsolescence has occurred when a new version of the framework includes a new type or method having uncanny resemblance (even down to the names!) to ones I had written from scratch prior to their appearance in the framework. Historical examples include TimeZoneInfo, IReadOnlyList, and the IsNullOrWhiteSpace method.

If my past ability to guess what Microsoft will add to mscorlib.dll is any guide, perhaps we'll be seeing Encryptor and Decryptor classes added by the time ASP.NET&nbps;5 is released!

Usage Notes

The types in this library are for core infrastructure and aim to be as stable and reliable as the .NET Framework itself, including optimized performance, full test coverage, coding by contract, and detailed inline documentation. You should be able to consider a reference to misc.corlib as what Mark Seemann would call a "stable" (non‑volatile) depency.

As such, there is no particular emphasis on abstraction or points of dependency injection. The concrete Encryptor and Decryptor classes in the Security.Cryptography namespace, for example, do not specify an abstract contract because they are basically thin facades coordinating the cooperation of a few concrete .NET Framework types. The facades for cryptographic operations in this library are designed to guide an optimum implementation with a bit less ceremony, so it's more practical to simply treat them as concrete types themselves. Besides, they are already amply variable by their internal use of the abstract factory within the SymmetricAlgorithm class in mscorlib.dll

A pro tip, by the way: If you'd like to use dependency injection to specify which algorithms to use for encryption or hashing, the AlgorithmFactory class provides the injection point.

Since the types in this library target specific parts of the .NET Framework, their namespaces mimic the same structure.

I'm happy to make this library available publicly under the Apache 2 License, and am open to suggestions for improvement. Please feel to fork away, use as much or as little as you like, and submit pull requests.

Documentation

Is in the form of a compiled help file, and inline within the code itself. It will be included in Visual Studio intellisense if the XML documentation comment file misc.corlib.XML is included adjacent to the reference.

About

Assorted utilities and extensions for "mscorlib" types.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages