I'm making a utility class for myself. I have a little question which is hard for me to explain, so I just wrote this code:

VB Code:
  1. Class GraphicsUtil
  2.       Public Function RectToRectF ...
  3. End Class
  4.  
  5. Public ConvertorUtil
  6.      Public Function ArrayListToString .....
  7.  
  8. [color=red]heres my question, should I do this? it helps me
  9. organize my code better, but it results in multiple declaration of a
  10. function:[/color]
  11.  
  12.      Public Function RectToRectF ()
  13.              ' Calling the function from the other class
  14.             Return GraphicsUtil.RectToRectF...
  15.      End Function
  16. End Class

I just have too many functions and I'm trying to categorize them by putting them in different classes. But some of them like the above function dont fit into one category, so I decided to put them in more than one class. Is this considered bad coding or something? should I aviod this?