using System;
using System.Collections.Generic;
using System.Collections;
namespace CodeCompress.LongClass
{
public abstract class AbstractModel
{
protected void OnPropertyChanged(string propertyName)
{
IEnumerable var = Validate(propertyName);
// このあといろいろやる
}
protected abstract IEnumerable Validate(string propertyName);
}
}