Beispiel #1
0
        /// <summary>
        /// Add completion data without searching through the Java library first
        /// </summary>
        private static void AddCompletion_Data(string data)
        {
            if (CompletionList.Contains(data))
            {
                return;
            }
            if (data.Length < 1)
            {
                return;
            }

            CompletionList.Add(data);
        }