//GLSAPD 개체등록 및 가져오기(실제 APD 값이 저장됨) #region "GLSAPD" public bool AddGLSAPD(int intIndex) { clsGLSAPD dclsGLSAPD; //GLSAPD 개체 선언 try { if (intIndex <= 0) { return(false); } if (pHashtableGLSAPD.Contains(intIndex)) { return(true); } dclsGLSAPD = new clsGLSAPD(intIndex); pHashtableGLSAPD.Add(intIndex, dclsGLSAPD); return(true); } catch { return(false); } finally { } }
public void CopyFrom(clsGLSAPD glsApd) { this.Name = glsApd.Name; this.Length = glsApd.Length; this.Format = glsApd.Format; this.ModuleID = glsApd.ModuleID; }