Exemplo n.º 1
0
		public int LastIndexOf(Attachment attachment) {
			return InnerArray.LastIndexOf(attachment);
		}
Exemplo n.º 2
0
		public void CopyTo(Attachment[] array, int index) {
			InnerArray.CopyTo(array, index);
		}
Exemplo n.º 3
0
		public void Insert(int index, Attachment value) {
			InnerArray.Insert(index, value);
		}
Exemplo n.º 4
0
		public void Remove(Attachment attachment) {
			InnerArray.Remove(attachment);
		}
Exemplo n.º 5
0
		public bool Contains(Attachment attachment) {
			return InnerArray.Contains(attachment);
		}
Exemplo n.º 6
0
		public void Add(FileInfo file) {
			Attachment attachment = new Attachment(file);
			InnerArray.Add(attachment);
		}
Exemplo n.º 7
0
		public void Add(Attachment attachment) {
			InnerArray.Add(attachment);
		}