Example #1
0
 public bool Match(int?id)
 {
     if (IntId == null)
     {
         throw new Exception("Match(int? id): IntId == null");
     }
     return(IntId.Match(id));
 }