10 lines
202 B
C#
Raw Normal View History

2025-09-19 19:43:49 +05:00
using System;
namespace VContainer
{
public interface IInjectParameter
{
bool Match(Type parameterType, string parameterName);
object GetValue(IObjectResolver resolver);
}
}