Kinect.KinectManager.GetUserIdByIndex C# (CSharp) 메소드

GetUserIdByIndex() 공개 메소드

Gets the user ID by the specified user index.
public GetUserIdByIndex ( int i ) : Int64
i int The user index.
리턴 Int64
        public Int64 GetUserIdByIndex(int i)
        {
            if (i >= 0 && i < alUserIds.Count)
            {
                return alUserIds[i];
            }

            return 0;
        }
KinectManager