예제 #1
0
 public void Unexport(string key)
 {
     ExportedNames.Remove(key);
 }
예제 #2
0
 public void Export(string key)
 {
     ExportedNames.Add(key);
 }
예제 #3
0
 public bool IsExported(string key)
 {
     return(ExportedNames.Contains(key));
 }