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

📄 imagedealwith.cs

📁 ASP C#代码实例 适合初学人士学习使用
💻 CS
字号:
using System;

namespace Example_12_26
{
	/// <summary>
	/// ImageDealWith 的摘要说明。
	/// </summary>
	public class BoxUnitDTO
	{
		private string specimenId = "";
		private bool isEmpty = true;
		
		public BoxUnitDTO()
		{
			//
			// TODO: Add constructor logic here
			//
		}

		public string SpecimenId
		{
			get
			{
				return specimenId;
			}
			set
			{
				specimenId = value;
			}
		}

		public bool IsEmpty
		{
			get
			{
				return isEmpty;
			}
			set
			{
				isEmpty = value;
			}
		}
	}

	public class BoxDTO
	{
		private string boxName = "";
		private string boxUnitsX = "0";
		private string boxUnitsY = "0";
		private BoxUnitDTO[] boxUnits;

		
		public BoxDTO()
		{
			//
			// TODO: Add constructor logic here
			//
		}

		
		public BoxUnitDTO[] BoxUnits
		{
			get
			{
				return boxUnits;
			}
			set
			{
				boxUnits = value;
			}
		}

		public string BoxUnitsY
		{
			get
			{
				return boxUnitsY;
			}
			set
			{
				boxUnitsY = value;
			}
		}

		public string BoxUnitsX
		{
			get
			{
				return boxUnitsX;
			}
			set
			{
				boxUnitsX = value;
			}
		}

		public string BoxName
		{
			get
			{
				return boxName;
			}
			set
			{
				boxName = value;
			}
		}
	}
}

⌨️ 快捷键说明

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