Skip to content

Instantly share code, notes, and snippets.

@SunXiaoShan
Created November 12, 2019 07:03
Show Gist options
  • Save SunXiaoShan/b3a4f1cd95801892f453cdb8a9b1e1bf to your computer and use it in GitHub Desktop.
Save SunXiaoShan/b3a4f1cd95801892f453cdb8a9b1e1bf to your computer and use it in GitHub Desktop.
public bool isValidLogFileName(string fileName) {
FileExtensionManager manager = new FileExtensionManager();
return manager.isValid(fileName);
}
class FileExtensionManager {
public bool isValid(string fileName) {
//TODO: read some file here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment