8 Replies
First, I recommend not silencing null-warnings with
!
. In your case you can use null-propagation instead, with ?
Some style issues, too. Local variables and method parameters are camelCase
not PascalCase
, for example
And
is not really following the style either. It would be either
or
Besides that, it looks fineUnknown User•8mo ago
Message Not Public
Sign In & Join Server To View
Should probably use file-scoped namespace, and the class can be static
Unknown User•8mo ago
Message Not Public
Sign In & Join Server To View
Not a clone
Unknown User•8mo ago
Message Not Public
Sign In & Join Server To View