在C#中使用变量类型作为泛型参数
C#中的泛型提供了编译时类型安全,要求类型在编译时已知。
假设你定义了一个泛型方法:
<code class="language-csharp">bool DoesEntityExist<T>(Guid guid, ITransaction transaction) where T : IGloballyIdentifiable;</code>
当你尝试动态使用它时,会遇到编译错误:
<code class="language-csharp">Type t = entity.GetType(); DoesEntityExist<t>(entityGuid, transaction);</code>
这是因为t
只在运行时已知,这违反了泛型的编译时类型安全原则。
你可以使用反射来处理动态类型的泛型方法:
<code class="language-csharp">MethodInfo method = GetType().GetMethod("DoesEntityExist") .MakeGenericMethod(new Type[] { t }); method.Invoke(this, new object[] { entityGuid, transaction });</code>
然而,这种方法由于其复杂性和性能开销而并非理想之选。
更好的解决方案是将你的调用方法设为泛型,并将类型参数作为类型参数传递:
<code class="language-csharp">void MyMethod<T>(T entity, Guid guid, ITransaction transaction) { DoesEntityExist<T>(guid, transaction); }</code>
这样,你就可以在调用MyMethod
时动态指定类型,在保持类型安全的同时避免使用反射。
以上是如何在 C# 中使用变量的类型作为泛型参数?的详细内容。更多信息请关注PHP中文网其他相关文章!