<PackageReference Include="Castle.Windsor" Version="5.1.2" />

Castle.MicroKernel.Registration.Property

public class Property
Represents a key/value pair.
public object Key { get; }

Gets the property key.

public object Value { get; }

Gets the property value.

public Property(object key, object value)

public static PropertyKey ForKey(string key)

Create a PropertyKey with key.

public static PropertyKey ForKey(Type key)

Create a PropertyKey with key.

public static PropertyKey ForKey<TKey>()

Create a PropertyKey with key.

public static Dependency op_Implicit(Property item)