Example #1
0
 internal TemplateTypeReference(ISimpleReference template, int position)
 {
     if (template == null)
     {
         throw new ArgumentNullException("template");
     }
     if (position < 0)
     {
         throw new ArgumentOutOfRangeException("position");
     }
     this.template = template;
     this.position = position;
 }
Example #2
0
 internal TemplateTypeReference (ISimpleReference template, int position) {
     if (template == null) throw new ArgumentNullException("template");
     if (position < 0) throw new ArgumentOutOfRangeException("position");
     this.template = template;
     this.position = position;
 }