-2

我是新手。我想知道您如何编写Init如下方法的声明。

Role role = Manager.Init<Role>();
4

1 回答 1

1

假设这Manager是一个类,它看起来像:

class Manager {
    // ...
    public static T Init<T>() {
        // ...
    }
}
于 2013-10-28T14:23:09.830 回答