Commit aa011252 authored by shargon's avatar shargon

Update DataSegment.cs

done
parent a5884bdd
......@@ -23,7 +23,7 @@ namespace PcapDotNet.Packets
/// Take all the bytes as a segment.
/// </summary>
/// <param name="buffer">The buffer to take as a segment.</param>
public DataSegment(byte[] buffer) : this(buffer, 0 , buffer==null ? 0 : buffer.Length) { }
public DataSegment(byte[] buffer) : this(buffer, 0 , buffer == null ? 0 : buffer.Length) {}
/// <summary>
/// Take only part of the bytes as a segment.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment