예제 #1
0
파일: Commands.cs 프로젝트: taimish/FFANN
        ////////// *******************************************************************************************************************************
        ////////// *******************************************************************************************************************************
        ////////// EXAMPLES FUNCTIONS

        // CREATE NEW EXAMPLE
        public string NewExample(string tmpString)
        {
            // ADDING NEW EXAMPLE
            string result = examples.AddExample(tmpString);

            if (result.Length > 0)
            {
                return(result);
            }

            return("\n-> New example created successfully.");
        }