RealityFusion
Aug 15 2003, 08:35 PM
How can I pass a character array to a member function in a class?
andariel
Aug 18 2003, 08:47 AM
You can define a character array as the methods argument list. Thats the general way of passing data to a method. It doesn't make a difference if it is defined in a class or not. If it is defined in a class, simply make an object of that class and then invoke the method.
Is that clear or you need a sample or something ?