Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
マネージDLL(C#)のAPIを指定します。VB6.0などの管理されていない環境で次のAPIを使用できますか?
VB6.0はこれをサポートしていますか?:A
public static T CreateObject<T>() where T : new() { return new T(); }
VB6.0はこれをサポートしていますか?:B
public static T CreateObject() { return new T(); }
VB 6 にはジェネリックのようなものはありません。また、COM はそれをサポートしていないため、VB 6 では COM 経由でマネージ DLL を使用することさえできません。