我找到了一些代码,但是我不确定返回 interface 的default
的目的是什么?
interface
由很少的class
个实现
public ISocketDevicePart Parent => default(ISocketDevicePart);
public interface ISocketDevicePart
{
ISocketDevicePart Parent { get; }
IEnumerable<ISocketDevicePart> Childs { get; }
IXYOffset Offset { get; set; }
}
我不确定结果。它应该返回null
总是吗?