コード例 #1
0
ファイル: Photo.cs プロジェクト: drorganvidez/guadalinex-v6
        // Tag management.

        // This doesn't check if the tag is already there, use with caution.
        public void AddTagUnsafely(Tag tag)
        {
            if (tags == null)
            {
                tags = new ArrayList();
            }

            tags.Add(tag);
            changes.AddTag(tag);
        }
コード例 #2
0
 // This doesn't check if the tag is already there, use with caution.
 public void AddTagUnsafely(Tag tag)
 {
     tags.Add(tag);
     changes.AddTag(tag);
 }