这可能是蹩脚的,但在这里:
public interface Interface<T> { T Value { get; } } public class InterfaceProxy<T> : Interface<T> { public T Value { get; set; } } public class ImplementedInterface: InterfaceProxy<Double> {}
现在我想创建一个ImplementedInterface的实例并初始化它的成员.
可以这样做(使用初始化列表),或者只能使用带有Double参数的构造函数来实现相同的行为吗?
var x = new ImplementedInteface { 30.0 };
解决方法
可以通过以下方式完成
var x = new ImplementedInteface { Value = 30.0 };