- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
谁能解释一下?根据文档 IsGenericType
indicatesing whether the current Type represents a type parameter in the definition of a generic type or method.
所以这个 (LINQPad) 代码:
bool bStraight = typeof(Task).IsGenericType;
bStraight.Dump("typeof(Task).IsGenericType");
按预期工作并产生输出:
typeof(Task).IsGenericType
False
但是当我通过反射从方法中检索它时:
public class MyClass
{
public async Task Method()
{
await Task.Run(() =>
{
Thread.Sleep(3000);
});
}
}
public async Task TEST()
{
MyClass theObject = new MyClass();
Task task = (Task)typeof(MyClass).GetTypeInfo()
.GetDeclaredMethod("Method")
.Invoke(theObject, null);
bool b = task.GetType().IsGenericType;
bool b2 = task.GetType().GetGenericTypeDefinition() == typeof(Task<>);
b.Dump("IsGenericType");
b2.Dump("GetGenericTypeDefinition");
bool bStraight = typeof(Task).IsGenericType;
bStraight.Dump("typeof(Task).IsGenericType");
}
我得到了意外的输出:
IsGenericType
TrueGetGenericTypeDefinition
True
最佳答案
在某些情况下,框架返回 Task<VoidTaskResult>
伪装成 Task
.想象一下,您有一些逻辑依赖于 TaskCompletionSource<T>
.如果您实际上不打算返回结果,您仍然必须填写 T
通用参数。你可以使用 TaskCompletionSource<object>
,但你会浪费一个指针值的内存(32 位中为 4 个字节,64 位中为 8 个字节)。为避免这种情况,框架使用空结构:VoidTaskResult
.
关于c# - 为什么 Type.IsGenericType 为 Task 返回 TRUE 而没有通过方法反射获得的返回类型但 typeof(Task).IsGenericTyp 返回 FALSE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52447267/
谁能解释一下?根据文档 IsGenericType indicatesing whether the current Type represents a type parameter in the d
在下面的代码中我们有两个类,Parent 类使用泛型: abstract class Parent { public T Put(T id, char value) {
我有生成 char 对象集合的函数: public static IEnumerable generic_foo() { return "1231"; } public static IEnu
Type.IsGenericType 和 Type.IsGenericTypeDefinition 有什么区别?有趣的是,MSDN 的 IsGenericTypeDefinition 链接已损坏。 更
我有一个问题,我想确定一个对象是否属于 KeyValuePair 类型 当我在 if 中进行比较时: else if (item.GetType() == typeof(KeyValuePair))
我在 .Net 4.6.2 中有此代码,现在尝试转换为 .Net 核心,但出现错误 Error CS1061 'Type' does not contain a definition for 'IsG
我是一名优秀的程序员,十分优秀!