using System; using System.Collections; namespace DBTypes { public class Tm_Messagefiles_Va : System.Collections.CollectionBase { #region Constructors public Tm_Messagefiles_Va() { } #endregion #region Methods public void Add(Tm_Messagefile_Ty obj) { this.InnerList.Add(obj); } public void Remove(Tm_Messagefile_Ty obj) { if (this.InnerList.Contains(obj)) this.InnerList.Remove(obj); } #endregion #region Indexers public Tm_Messagefile_Ty this[int index] { get { if (index >= this.InnerList.Count || index < 0) { return null; } return (Tm_Messagefile_Ty) this.InnerList[index]; } set { this.InnerList[index] = value; } } #endregion } }
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
The Next Version of Android - Some of What's Coming