Implicitify 1.0.2
Make any class implement any interface without changing it. Allows for abstractions over any class as long as it has methods with the same signatures as the interface.
Install-Package Implicitify -Version 1.0.2
dotnet add package Implicitify --version 1.0.2
<PackageReference Include="Implicitify" Version="1.0.2" />
paket add Implicitify --version 1.0.2
#r "nuget: Implicitify, 1.0.2"
// Install Implicitify as a Cake Addin
#addin nuget:?package=Implicitify&version=1.0.2
// Install Implicitify as a Cake Tool
#tool nuget:?package=Implicitify&version=1.0.2
Implicitify
A C# library that allows classes to implement interfaces implicitly. Allows for any class to implement any interface as long as the class has the same method and/or property signature.
Usage
using Implicitify;
public interface IDirectoryInfo
{
string Name { get; }
}
public static class Program
{
public static void Main()
{
// DirectoryInfo is a System.IO class, it does not implement
// any interface, however, it would be nice to abstract it.
var directory = new System.IO.DirectoryInfo(@"C:\Hello World\");
// Wrapped is an IDirectoryInfo implementation!
var wrapped = directory.As<IDirectoryInfo>();
// Will "Hello World"
Console.WriteLine(wrapped.Name);
}
}
Motivation
When adding abstractions on top of well-known C# classes such as FileInfo
, HttpClient
or even any external nuget that one may wish to extend. There's always the complicated extra step of having to create an interface for these types that add the methods and then creating a Wrapper. However this is too much work, although it guarantees type-safety.
Inspiration
In languages such as Go interfaces are always implemented implicitly, this allows for greater abstractions that the implementations aren't aware of. However in both C# and Java this isn't a feature.
Implicitify
A C# library that allows classes to implement interfaces implicitly. Allows for any class to implement any interface as long as the class has the same method and/or property signature.
Usage
using Implicitify;
public interface IDirectoryInfo
{
string Name { get; }
}
public static class Program
{
public static void Main()
{
// DirectoryInfo is a System.IO class, it does not implement
// any interface, however, it would be nice to abstract it.
var directory = new System.IO.DirectoryInfo(@"C:\Hello World\");
// Wrapped is an IDirectoryInfo implementation!
var wrapped = directory.As<IDirectoryInfo>();
// Will "Hello World"
Console.WriteLine(wrapped.Name);
}
}
Motivation
When adding abstractions on top of well-known C# classes such as FileInfo
, HttpClient
or even any external nuget that one may wish to extend. There's always the complicated extra step of having to create an interface for these types that add the methods and then creating a Wrapper. However this is too much work, although it guarantees type-safety.
Inspiration
In languages such as Go interfaces are always implemented implicitly, this allows for greater abstractions that the implementations aren't aware of. However in both C# and Java this isn't a feature.
Release Notes
Initial release
Dependencies
-
.NETStandard 2.0
- Castle.Core (>= 4.3.1)
Used By
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Implicitify:
Package | Downloads |
---|---|
Libs.Sheets.OfficeOpenXml
Package Description
|
GitHub repositories
This package is not used by any popular GitHub repositories.
Version History
Version | Downloads | Last updated |
---|---|---|
1.0.2 | 1,034 | 2/26/2019 |