methods

I have a method in program.cs that I want to transfer to its own class

I'm new. I'm trying to take the pigTalk() and transfer it into its own class Thanks for any help using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FunctionTest { public class Program { public static void pigTalk(string sentence) { try { ...

C++: unions with methods?

Is there anything wrong with a union having one or more methods? Or anything to watch out for? (I can see constructors/destructors being problematic for schizophrenic reasons) ...

enter array input n solve some question with method

i need to know how to do array. but, we insert the input and no user input. when complete the table, we must show the average, maximum score, minimum score and identify which the table has maximum or minimum score using the method.. can help me? ...

Rails method - to_sym

What does the to_sym method do? What is it used for? ...