Exemple #1
0
 public ITextFile GetTextFile(string fileName)
 {
     // Check that it exists here, avoiding unexpected exceptions later
     return(EmbeddedResource.Exists(fileName) ? new EmbeddedTextFile(fileName) : null);
 }