C# 에는 StartServerParameterBase
클래스에서 netWorkerThreadCount
프로퍼티는 있는데 userWorkerThreadCount
프로퍼티는 왜 없는지, threadCount
프로퍼티에 의미가 무엇인지 알고 싶습니다.
말씀하신 StartServerParameter
의 threadCount는 c++쪽의 CStartServerParameter.m_threadCount
를 래핑한 것입니다. include 폴더의 StartServerParameter.h
에 있는 m_threadCount
의 주석을 보면 이 멤버 변수에 대한 설명이 나와있습니다. 그 내용을 보면 이 멤버 변수가 말씀하신 userWorkerThreadCount
인 것을 아실 수 있습니다.