using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Lab4 { class Process { private Int32 execTime, procID; public Process(Int32 execTime, Int32 procID) { executionTime = execTime; PID = procID; } public Int32 executionTime { get { return execTime; } private set { if (value >= 3 && value <= 10) execTime = value; } } public Int32 PID { get { return procID; } private set { procID = value; } } } }