用get和set实现属性?

时间:2013-10-16 16:03:51

标签: c#

在我的一个班级中,我有一个属性ImageNames,我想得到并设置。我尝试添加set但它不起作用。如何使此属性可设置?

public string[] ImageNames
{
            get
            {
                return new string[] { };
            }

            //set; doesn't work
}

3 个答案:

答案 0 :(得分:8)

您通常需要一个支持字段:

private string[] imageNames = new string[] {};
public string[] ImageNames
{
        get
        {
            return imageNames;
        }

        set
        {
            imageNames = value;
        }
 }

或使用自动属性:

 public string[] ImageNames { get; set; }

话虽如此,您可能只想公开一个允许人们添加名称的集合,而不是替换整个名单,即:

 private List<string> imageNames = new List<string>();
 public IList<string> ImageNames { get { return imageNames; } }

这将允许您添加名称并将其删除,但不会更改集合本身。

答案 1 :(得分:2)

如果要为字符串[]设置任何内容,则需要设置变量。

像这样:

   private string[] m_imageNames;

   public string[] ImageNames 
   {
       get {
           if (m_imageNames == null) {
                m_imageNames = new string[] { };
           } 
           return m_imageNames;
       }
       set {
           m_imageNames = value;
       }
   }

此外,这些被称为属性,而不是属性。您可以在方法或类或属性上设置属性,以某种方式对其进行转换。例如:

 [DataMember]     // uses DataMemberAttribute
 public virtual int SomeVariable { get; set; }

答案 2 :(得分:1)

只需使用自动属性

public string[] ImageNames { get; set;}

请阅读

http://msdn.microsoft.com/en-us/library/x9fsa0sw.aspx