-
Couldn't load subscription status.
- Fork 329
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
There are many places where we are doing the following:
PayloadHelper.GetTypeId():
if (type == typeof(int))
{
return new[] { Convert.ToByte('i') };
}
if (type == typeof(long))
{
return new[] { Convert.ToByte('g') };
}
..
Use C#'s pattern matching instead if applicable.
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers