public void Set(LobbyDetailsGetMemberCountOptions other)
 {
     if (other != null)
     {
         m_ApiVersion = LobbyDetails.LobbydetailsGetmembercountApiLatest;
     }
 }
        /// <summary>
        /// Get the number of members associated with this lobby
        /// </summary>
        /// <param name="options">the Options associated with retrieving the member count</param>
        /// <returns>
        /// number of members in the existing lobby or 0 if there is an error
        /// </returns>
        public uint GetMemberCount(LobbyDetailsGetMemberCountOptions options)
        {
            System.IntPtr optionsAddress = new System.IntPtr();
            Helper.TryMarshalSet <LobbyDetailsGetMemberCountOptionsInternal, LobbyDetailsGetMemberCountOptions>(ref optionsAddress, options);

            var funcResult = EOS_LobbyDetails_GetMemberCount(InnerHandle, optionsAddress);

            Helper.TryMarshalDispose(ref optionsAddress);

            return(funcResult);
        }