
I am trying to add the new term to termset called "Food"
                TaxonomySession session = new TaxonomySession(SPContext.Current.Site);
                TermStore store = session.TermStores[0];
                Group group = store.Groups[0];
                TermSet set = group.TermSets[1];
                set.CreateTerm("Vada Payasam", 1033);
                store.CommitAll();