mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-19 02:20:12 +01:00
12 lines
271 B
C#
12 lines
271 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace ServicePoint;
|
|
|
|
public sealed partial class Command
|
|
{
|
|
public static bool TryFromPacket(Packet packet, [MaybeNullWhen(false)] out Command command)
|
|
{
|
|
return (command = TryFromPacket(packet)) != null;
|
|
}
|
|
}
|