Vst.TypeInfer
1.0.0.1
.NET Standard 2.0
.NET Framework 4.0
dotnet add package Vst.TypeInfer --version 1.0.0.1
NuGet\Install-Package Vst.TypeInfer -Version 1.0.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Vst.TypeInfer" Version="1.0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Vst.TypeInfer --version 1.0.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Vst.TypeInfer, 1.0.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Vst.TypeInfer as a Cake Addin
#addin nuget:?package=Vst.TypeInfer&version=1.0.0.1
// Install Vst.TypeInfer as a Cake Tool
#tool nuget:?package=Vst.TypeInfer&version=1.0.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
TypeInfer
Auxiliary type inference without writing types that are not necessary.
Sample
using System;
using System.Collections;
using Vst.TypeInfer;
using static Vst.TypeInfer.InferType;
class CollectionInit {
class A : IEnumerable {
public void Add<T>(Action<T, T, int, long> act) { }
public void Add<T>(TI<T> ti, Action<T, T, int, long> act) { }
IEnumerator IEnumerable.GetEnumerator() => throw new NotImplementedException();
}
void Test() {
var a1 = new A {
{ (string s1, string s2, int _, long _) => s1.ToUpper() },
{ IT<string>, (s1, s2, _, _) => s1.ToUpper() },
{ IT<DateTime>, (d1, d2, _, _) => d1.ToLongTimeString() },
};
}
}
static class ExtensionFn {
class B<T1, T2, T3> { }
static void Fn1<T1, T2, T3, T4>(this B<T1, T2, T3> b, Action<T4, T4, int, long> act) { }
static void Fn1<T1, T2, T3, T4>(this B<T1, T2, T3> b, TI<T4> ti, Action<T4, T4, int, long> act) { }
static void Test() {
var b = new B<int, int, int>();
b.Fn1((string s1, string s2, int _, long _) => s1.ToUpper());
b.Fn1<int, int, int, string>((s1, s2, _, _) => s1.ToUpper());
b.Fn1(IT<string>, (s1, s2, _, _) => s1.ToUpper());
}
}
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.0
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0.1 | 107 | 2/5/2023 |
1.0.0 | 254 | 5/9/2021 |
1.0.0-alpha1 | 145 | 5/9/2021 |