5.4.9.2 Beta

This commit is contained in:
Frank Skare
2021-08-08 14:31:43 +02:00
parent fbf50e7466
commit 95a3403898
7 changed files with 61 additions and 33 deletions

View File

@@ -14,20 +14,6 @@ using static mpvnet.Global;
namespace mpvnet
{
public static class PathHelp
{
public static string GetFileName(string path)
{
if (string.IsNullOrEmpty(path))
return "";
if (path.Contains(Path.DirectorySeparatorChar))
return path.Substring(path.LastIndexOf(Path.DirectorySeparatorChar) + 1);
return path;
}
}
public static class StringHelp
{
public static string GetMD5Hash(string txt)