/// <summary> /// Gets the encode size of one or multiple T objects. /// </summary> /// <typeparam name="T">Type of the object to decode.</typeparam> /// <param name="value">One or multiple T objects.</param> /// <returns>Encode size in bytes of the object.</returns> public static int GetMultipleEncodeSize <T>(Multiple <T> value) { return(Multiple <T> .GetEncodeSize(value)); }