Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
505 views
in Technique[技术] by (71.8m points)

c# - Type.GetType does not work on generic classes?

Type t = Type.GetType("BLL.MyLayers.TestLayer,BLL");

t is always null for a generic class.

When I try to get the type for a normal class t is not null.

Why is that or do I something wrong?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Generic types are compiled using a little trick:

class A<T>
{
}

var aa = Type.GetType("ConsoleApplication1.A`1");

Note that the apostrophe isn't a quote, but the key to the left of the 1 key (on most keyboards).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...