Recent content by kiwijoey

  1. K

    C# C# StreamWriter: Writing Data to CSV File

    Can someone please, using the following data, show me how to write this data to a CSV file using the StreamWriter class in C#. Bob,1,2,3 Jim,4,5,6 Tom,7,8,9
  2. K

    C# C# Passing color into a method.

    How would you go about passing a color into a C# method and using that color inside the method to create a new pen? Assuming everything else is defined Is it MethodName(Color color) Graphics pen1 = new Pen(color.Color,1); or is it something completely different?
Back
Top