Supressed XML comments for Writer & Readere

This commit is contained in:
Albin Corén 2018-04-18 11:49:08 +02:00
parent e342afe3ff
commit c13f3cd64d
3 changed files with 22 additions and 3 deletions

View File

@ -1,4 +1,5 @@
namespace MLAPI.NetworkingManagerComponents.Binary
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
namespace MLAPI.NetworkingManagerComponents.Binary
{
public static class BinaryHelpers
{
@ -15,3 +16,4 @@
((value << 8) & (0xFFUL << 32)) ;
}
}
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member

View File

@ -1,4 +1,5 @@
using System;
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
using System;
using System.Runtime.InteropServices;
using System.Text;
@ -107,3 +108,4 @@ namespace MLAPI.NetworkingManagerComponents.Binary
private static long ZigZagDecode(ulong d, int bytes) => (long)(((d << (bytes * 8 - 1)) & 1) | (d >> 1));
}
}
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member

View File

@ -1,4 +1,5 @@
using System;
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Runtime.InteropServices;
@ -113,6 +114,10 @@ namespace MLAPI.NetworkingManagerComponents.Binary
foreach (T t1 in t) Push(signed ? (object)ZigZagEncode(t1 as long? ?? t1 as int? ?? t1 as short? ?? t1 as sbyte? ?? 0, size) : (object)t1);
}
/// <summary>
/// Serializes data, allocates an array and returns it
/// </summary>
/// <returns>Allocated array with written data</returns>
public byte[] Finalize()
{
long bitCount = 0;
@ -133,6 +138,11 @@ namespace MLAPI.NetworkingManagerComponents.Binary
}
//The ref is not needed. It's purley there to indicate that it's treated as a reference inside the method.
/// <summary>
/// Writes data to the given buffer
/// </summary>
/// <param name="buffer"></param>
/// <returns>The amount of bytes written</returns>
public long Finalize(ref byte[] buffer)
{
if(buffer == null)
@ -161,6 +171,10 @@ namespace MLAPI.NetworkingManagerComponents.Binary
return (bitCount / 8) + (bitCount % 8 == 0 ? 0 : 1);
}
/// <summary>
/// Gets the size in bytes if you were to serialize now
/// </summary>
/// <returns>The size in bytes</returns>
public long GetFinalizeSize()
{
long bitCount = 0;
@ -391,3 +405,4 @@ namespace MLAPI.NetworkingManagerComponents.Binary
}
}
}
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member