A lightweight IOC Container that is powerful enough to do all the things you need it to do.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
661 B

// Author: Gockner, Simon
// Created: 2022-09-02
// Copyright(c) 2022 SimonG. All Rights Reserved.
namespace LightweightIocContainer;
/// <summary>
/// Wrapper class to handle null passed as an argument correctly
/// </summary>
public class NullParameter
{
/// <summary>
/// Wrapper class to handle null passed as an argument correctly
/// </summary>
/// <param name="parameterType">The <see cref="Type"/> of the parameter</param>
public NullParameter(Type parameterType) => ParameterType = parameterType;
/// <summary>
/// The <see cref="Type"/> of the parameter
/// </summary>
public Type ParameterType { get; }
}