public static string ReadUTF(IDataInput input) { if (input is null) { throw new ArgumentNullException(nameof(input)); } return(DecodeUTF(input.ReadUInt16(), input)); }