コード例 #1
0
        public string LoadGestures()
        {
            if (_kHandler != null)
            {
                var arr = _kHandler.LoadGestures() as string[];

                if (arr == null)
                {
                    return("");
                }

                return(arr.Aggregate("", (current, gesture) => current + (gesture + "\n")));
            }

            return("");
        }