ExprZeroInit
using System;
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal sealed class ExprZeroInit : ExprWithType
{
public override object Object => Activator.CreateInstance(base.Type.AssociatedSystemType);
public ExprZeroInit(CType type)
: base(ExpressionKind.ZeroInit, type)
{
}
}
}