๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
C#

enum ๊ฐœ์ˆ˜ ๊ตฌํ•˜๊ธฐ

by ใ…Ž-ใ…Ž 2022. 12. 12.
int length = System.Enum.GetValues(typeof(sfxType)).Length;

System.Enum.GetValues( type ).Length;

-> typeof( ~ )๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ type์œผ๋กœ

-> GetValues ๋Œ€์‹  GetNames๋ฅผ ์จ๋„ ๋˜‘๊ฐ™๋‹ค.

๋Œ“๊ธ€