コード例 #1
0
        public static SearchSet operator +(SearchSet a, string s)
        {
            SearchSet r = new SearchSet(a);

            r.b[PointerType.Of(s).Ident] = true;
            return(r);
        }
コード例 #2
0
 public bool this[string s]
 {
     get
     {
         return(b[PointerType.Of(s).Ident]);
     }
 }
コード例 #3
0
 //public static SortedList searchtypes = new SortedList(); // SearchType -> SearchType
 public SearchType(bool r, string t)
     : this(r, PointerType.Of(t))
 {
 }
コード例 #4
0
ファイル: Pointer.cs プロジェクト: envis10n/Warrens
 internal Pointer(string s)
 {
     ptp = PointerType.Of(s);
 }