private void WriteDeclaration(InterfaceProperty property) { WriteDescription(property.Description); WritePropertyDeclaration(property.Type.ToString(), property.Name); }
private void Write(InterfaceProperty property) { WriteDeclaration(property); WriteInterfaceAutoPropertyBody(property.PrivateGet, property.PrivateSet); }