Declaring methods with `in` parameters
If a I'm writing a synchronous method, should I always declare read-only value types with the
in keyword.void Foo(in int i)
{
}in is basically readonly refin used in the wild maybe, like, twicein keyword when calling the method, but still benefit from it.readonly ref