// .net code
private Type GetType(string className)
{
// 現在のドメインを作成します。
AppDomain currentDomain = AppDomain.CurrentDomain;
// アセンブリのリストの配列を作成します。
Assembly[] assems = currentDomain.GetAssemblies();
タイプ type = null;
for (int j = 0; j {
Type[] type = assems[j].GetTypes();
for (int k = 0; k
if (types[k].Name.Equals(className) || (types[k].FullName.Equals(className)))
{
type = タイプ[k];
休憩。
}
}
if (type != null)
{
ブレーク;
}
}
戻り値の型。
}