Go to file
wrenge 7c07c29a3b
Build and Publish NPM Package / docker (push) Successful in 9s Details
updated csproj
2024-05-03 10:44:46 +03:00
.gitea/workflows Migrating to Gitea actions 2023-05-16 11:52:15 +03:00
Runtime updated csproj 2024-05-03 10:44:46 +03:00
.gitignore gitignore, csproj change 2024-03-26 17:17:16 +03:00
README.md change namespace 2022-05-19 13:48:46 +03:00
README.md.meta first commit 2022-05-17 20:45:00 +03:00
Runtime.meta first commit 2022-05-17 20:45:00 +03:00
composer.json Vanilla csharp project migration 2024-03-26 17:18:35 +03:00
composer.json.meta Vanilla csharp project migration 2024-03-26 17:18:35 +03:00
package.json updated csproj 2024-05-03 10:44:46 +03:00
package.json.meta first commit 2022-05-17 20:45:00 +03:00

README.md

Example

using BitGames.Asserts;

...

Error.Assert(false); //throw exception
Error.Assert(false, "throw exception");
Error.Assert(false, "{0}/{1}", "throw", "exception");

Error.Verify(false); //throw exception
Error.Verify(false, "throw exception");
Error.Verify(false, "{0}/{1}", "throw", "exception");