[Modify] Remove it

This commit is contained in:
sta 2022-02-03 21:10:59 +09:00
parent 6f5e69eaf2
commit f93a1890e4

View File

@ -1946,71 +1946,6 @@ namespace WebSocketSharp
action (i); action (i);
} }
/// <summary>
/// Converts the specified value to a byte array.
/// </summary>
/// <returns>
/// An array of <see cref="byte"/> converted from <paramref name="value"/>.
/// </returns>
/// <param name="value">
/// A T to convert.
/// </param>
/// <param name="order">
/// <para>
/// One of the <see cref="ByteOrder"/> enum values.
/// </para>
/// <para>
/// It specifies the byte order of the return.
/// </para>
/// </param>
/// <typeparam name="T">
/// <para>
/// The type of <paramref name="value"/>.
/// </para>
/// <para>
/// <see cref="bool"/>, <see cref="byte"/>, <see cref="char"/>,
/// <see cref="double"/>, <see cref="float"/>, <see cref="int"/>,
/// <see cref="long"/>, <see cref="short"/>, <see cref="uint"/>,
/// <see cref="ulong"/>, or <see cref="ushort"/>.
/// </para>
/// </typeparam>
[Obsolete ("This method will be removed.")]
public static byte[] ToByteArray<T> (this T value, ByteOrder order)
where T : struct
{
var type = typeof (T);
var bytes = type == typeof (Boolean)
? BitConverter.GetBytes ((Boolean)(object) value)
: type == typeof (Byte)
? new byte[] { (Byte)(object) value }
: type == typeof (Char)
? BitConverter.GetBytes ((Char)(object) value)
: type == typeof (Double)
? BitConverter.GetBytes ((Double)(object) value)
: type == typeof (Int16)
? BitConverter.GetBytes ((Int16)(object) value)
: type == typeof (Int32)
? BitConverter.GetBytes ((Int32)(object) value)
: type == typeof (Int64)
? BitConverter.GetBytes ((Int64)(object) value)
: type == typeof (Single)
? BitConverter.GetBytes ((Single)(object) value)
: type == typeof (UInt16)
? BitConverter.GetBytes ((UInt16)(object) value)
: type == typeof (UInt32)
? BitConverter.GetBytes ((UInt32)(object) value)
: type == typeof (UInt64)
? BitConverter.GetBytes ((UInt64)(object) value)
: WebSocket.EmptyBytes;
if (bytes.Length > 1) {
if (!order.IsHostOrder ())
Array.Reverse (bytes);
}
return bytes;
}
/// <summary> /// <summary>
/// Converts the order of elements in the specified byte array to /// Converts the order of elements in the specified byte array to
/// host (this computer architecture) byte order. /// host (this computer architecture) byte order.