About Overloaded Methods in EasyLanguage
A number of classes in EasyLanguage use methods that are "overloaded" meaning that the method can accept multiple parameter types. When a call is made to an overloaded method, EasyLanguage automatically determines how the call will be processed based on the parameter's data type.
For example, the StreamWriter class has a method named Write(parameter) which writes data to a file. The parameter can be of type boolean, string, double, float, int, int64, or object. In any of these cases, Write will handle the parameter appropriately and send data to the file.