Created
November 12, 2019 07:03
-
-
Save SunXiaoShan/b3a4f1cd95801892f453cdb8a9b1e1bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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