コード例 #1
0
 public RoutePart(string str, RouteRegex regex)
 {
     String = str;
     IsGet  = true;
     Regex  = regex;
 }
コード例 #2
0
 public RoutePart(string str)
 {
     String = str;
     IsGet  = false;
     Regex  = RouteRegex.Custom;
 }