- Recovery

This commit is contained in:
2022-10-09 12:27:47 +09:00
parent f53695b228
commit 9052652122
30 changed files with 1112 additions and 219 deletions

View File

@@ -53,5 +53,9 @@ namespace CommonLibrary
}
return path.ToString();
}
public static bool IsDefault<T>(ref this T data) where T : struct
{
return default(T).Equals(data);
}
}
}