- Refactored code

- Implemented basic JSON Path interpreter
- Clean up
This commit is contained in:
2024-09-22 15:25:38 +02:00
parent 78ebafb409
commit 82a59eebd2
60 changed files with 1003 additions and 475 deletions

View File

@@ -0,0 +1,10 @@
namespace DevDisciples.Parsing.Extensions;
public static class CastingExtensions
{
public static T As<T>(this object @object)
{
ArgumentNullException.ThrowIfNull(@object);
return (T)@object;
}
}