1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

Add the current namespace to the list of places to search when looking for types

This commit is contained in:
Kevin Glynn 2012-09-06 15:50:01 +02:00
parent be1fe6d476
commit c430fb0aab

View File

@ -1139,6 +1139,7 @@ scope MkNonGeneric {
idx = ns.IndexOf('.', idx)+1;
search.Add(ns.Substring(0,idx-1));
}
search.Add(ns);
}
}