mirror of
https://github.com/chylex/Code-Statistics.git
synced 2024-11-22 07:42:46 +01:00
15 lines
358 B
C#
15 lines
358 B
C#
namespace CodeStatistics.Project{
|
|
enum FileCodeKind{
|
|
Generic
|
|
}
|
|
|
|
static class FileCodeKinds{
|
|
public static FileCodeKind? FromString(string str){
|
|
return str.ToLowerInvariant() switch{
|
|
"generic" => FileCodeKind.Generic,
|
|
_ => (FileCodeKind?)null
|
|
};
|
|
}
|
|
}
|
|
}
|