Пример #1
0
 protected override void InitBlock()
 {
     if (string.IsNullOrEmpty(this.typeName))
     {
         base.LogError("No type name given.", null);
     }
     else
     {
         this.t = BloxUtil.FindType(this.typeName);
         if (this.t == null)
         {
             base.LogError("The type could not be found: " + this.typeName, null);
         }
     }
 }