Files
Sharp7Reactive/Sharp7.Rx/Extensions/S7VariableExtensions.cs
2024-02-07 17:40:51 +01:00

10 lines
202 B
C#

namespace Sharp7.Rx.Extensions;
internal static class S7VariableAddressExtensions
{
public static bool MatchesType(this S7VariableAddress address, Type type)
{
return false;
}
}