错误:

public partial class Form2 : Form

可能的原因:
public static IChromosome To<T>(this string text)
{
    return (IChromosome)Convert.ChangeType(text, typeof(T));
}

已尝试(没有static关键字):
public IChromosome To<T>(this string text)
{
    return (IChromosome)Convert.ChangeType(text, typeof(T));
}

最佳答案

如果从参数中删除“this”,则它应该起作用。

public static IChromosome To<T>(this string text)

应该:
public static IChromosome To<T>(string text)

10-06 11:37