我有一個字符串屬性的類,實際上是用分隔符連接的幾個字符串。「代理屬性」是不錯的風格?
我想知道,如果是好的形式有代理性質是這樣的:
public string ActualProperty
{
get { return actualProperty; }
set { actualProperty = value; }
}
public string[] IndividualStrings
{
get { return ActualProperty.Split(.....); }
set
{
// join strings from array in propval .... ;
ActualProperty = propval;
}
}
有我忽略任何風險?