duydang
duydang
`IPlayer.Equals()` is inherited from `SharedBaseObject.Equals()`, which only compares type and native pointer. https://github.com/FabianTerhorst/coreclr-module/blob/6f356bef68ba88f19938a00da2699b4dad442d59/api/AltV.Net.Shared/Elements/Entities/SharedBaseObject.cs#L219 This seems like a breaking change for others if the maintainer overrides `IPlayer.Equals()` in the module. How...
Looks like this is caused by the behaviour of `os.path.normcase` on Windows.
I am also experiencing this false positive warning. This variable is declared in `vite-env.d.ts` and then defined in entry file `main.ts`. ```ts // vite-env.d.ts declare var PageHash: { SignUp: 'signup';...
Thank you for the response. Extension methods added, please have a look!
A regex-matching text could throw any exception when parsing, e.g. `OverflowException`. So yes, performing an extraction that never throw is the goal of this PR. If we are talking about...
Thanks for pointing this out. I'll implement an attempt to `TryParse` before falling back to `Parse` as soon as possible.
If this is correct according to what you said, unfortunately it's still giving `Answer not handled` error. ```csharp Alt.OnScriptRPC += (scriptRpcEvent, name, args, answerId) => { scriptRpcEvent.WillAnswer(); Task.Delay(1).ContinueWith(t => {...
Can I use `Alt.EmitRPCAnswer` with `answerId` instead? I actually use `Alt.EmitRPCAnswer` instead of `scriptRpcEvent` in my code, but I don't write it in the reproduction code. Sorry for that.
Hello @ikkentim, we've actually had a small chat about this on Discord, and just a bit later, I made my attempt to make a C# component, if you don't mind,...