Skip to content

Commit

Permalink
Update EPath.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
gisellevonbingen committed Jul 25, 2023
1 parent c72f731 commit 813dc0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Giselle.Net.EtherNetIP/CIP/EPath.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class EPath : List<IEPathSegment>, IEquatable<EPath>
public const byte SegmentRemainMask = 0x1F;
public const byte SegmentRemainOffset = 0;

public static EPath FromANSI(string value) => new EPath() { EPathSegmentData.FromSymbolicANSI(value) };
public static EPath FromSymbolicANSI(string value) => new EPath() { EPathSegmentData.FromSymbolicANSI(value) };

public static byte ToSegmentType(byte typeAssembly) => (byte)((typeAssembly & SegmentTypeMask) >> SegmentTypeOffset);

Expand Down

0 comments on commit 813dc0c

Please sign in to comment.