Click here to Skip to main content
Click here to Skip to main content
 

Oracle Advance Queue or Advanced Queuing from .NET (C#/VB/MC++)

By , 22 Nov 2005
 
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.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

CastorTiu
Software Developer Microsoft
United States United States
Member
I started with programming about 19 years ago as a teenager, from my old Commodore moving to PC/Server environment Windows/UNIX SQLServer/Oracle doing gwBasic, QBasic, Turbo Pascal, Assembler, Turbo C, BC, Summer87, Clipper, Fox, SQL, C/C++, Pro*C, VB3/5/6, Java, and today loving C#.
 
Currently working as SDE on Failover Clustering team for Microsoft.
 
Passion for most programming languages and my kids Aidan&Nadia.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 22 Nov 2005
Article Copyright 2005 by CastorTiu
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid