コード例 #1
0
 public object this[string sAttributeName]
 {
     get
     {
         return(CManager.GetAttributeOfObject(Handle, sAttributeName));
     }
     set
     {
         CManager.SetAttributeOfObject(Handle, sAttributeName, value);
     }
 }
コード例 #2
0
 public CHighQualityStudent()
 {
     this.Handle = CManager.CreateRemoteObject("HighQualityStudent");
 }
コード例 #3
0
 public CNormalStudent()
 {
     this.Handle = CManager.CreateRemoteObject("NormalStudent");
 }
コード例 #4
0
 internal void GetNotify(Post p)
 {
     CManager.GetNotify(Handle, p);
 }
コード例 #5
0
 public CAdvancedStudent()
 {
     this.Handle = CManager.CreateRemoteObject("AdvancedStudent");
 }