C# 非泛型类型是未绑定的还是绑定的?

Are C# non-generic types unbound or bound?

C# language specification 说:

The term unbound type refers to a non-generic type or an unbound generic type. The term bound type refers to a non-generic type or a constructed type.

那么,如果一个类型不是泛型类型,它是绑定的还是非绑定的?

经过长时间的搜索,我找到了一个 article,其中引用了 Eric Lippert:

Yes, nongeneric types are considered to be both bound and unbound.

这回答了我的问题。