从wm构造函数中的声明中删除类型.您正在实例化一个新变量,wm而不是在类上实例化该属性.
wm
public dict() { wm = new List>(); }
更好的是,根据Dai的评论,使用this关键字明确指定类属性.
this
public dict() { this.wm = new List>(); }