Visual Studio 2005 Tutorial question

I was working through the C# tutorial on CrystalReportViewers on Windows Apps,

ms-help://MS.VSCC.v80/MS.MSDNQTR.v80.en/MS.MSDN.v80/MS.VisualStudio.v80.en/crystlmn/html/crtsktutorialscrvcustomizecrvlistboxwin.htm

when I came to the instruction #3, "In the class signature, change the word class to "enum" to convert the class to an enumeration."

How does one get to this "class signature"   I am new to Visual Studio, so please forgive me if it should be obvious.

There was also a comment after instruction #2, "
Note   In Visual Studio 2005, you may be asked to place this class in an App_Code directory. Click the Yes button."

But, this did not occur.

Any assistance is greatly appreciated.
Don


Answer this question

Visual Studio 2005 Tutorial question

  • Raj Tripathi

    Hi Don,

    In this case, the "class signature" is the line that starts the class definition: just open the class file (you might have created this file in an earlier instruction ) and look for a line that looks like this:

    class <your_class_name>
     


    Change the keyword class to enum to make it as an enumeration.

    Hope this helps

    -Siva

  • Visual Studio 2005 Tutorial question