Descriptions of a code error in MSDN with the title "Creating a Group of Radio Buttons from a String Array (Visual C#) (821174)



The information in this article applies to:

  • Microsoft Visual C# .NET (2003)
  • Microsoft Visual C# .NET (2002)
  • Microsoft Visual C# 2005, Express Edition

SUMMARY

The Example section that contains code on following Microsoft Developer Network (MSDN) Web site contains an error:The following code:
radioButtons[i].Text = StringArray[i];

should appear as follows:
radioButtons[i].Text = stringArray[i];

MORE INFORMATION

Because C# is a case-sensitive language, the character S in StringArray must be lowercase.

REFERENCES

For additional information, see the following MSDN Web site:

Modification Type:MajorLast Reviewed:1/6/2006
Keywords:kbhelpfile kbWindowsForms kbdocerr KB821174 kbAudDeveloper kbAudITPRO