⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 groupitemcollection.cs

📁 使用C#语言开发的远程监控管理平台;使用soaphead对webservice进行加密的实例
💻 CS
字号:
using System;
using System.Collections;
using System.Reflection;

namespace IssueVision
{
	// Collection of GroupItem objects.
	public class GroupItemCollection : CollectionBase
	{
		// Return the item at the specified index.
		public GroupItem this[int Index]
		{
			get
			{
				return (GroupItem)List[Index];
			}
		}

		// Adds elements to the list.
		public void AddRange(GroupItem[] Items)
		{
			foreach (GroupItem item in Items)
			{
				this.List.Add(item);
			}
		}

		// Add one element to the list.
		public void Add(GroupItem Item)
		{
			List.Add(Item);
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -