I’m relatively new at MS Visual Studio 2010. What is the role for the file names .cs and .resx?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
.cs files are specified as c# source code files. In general, these contain the logic that your application performs, and are compiled byu the C# compiler, csc.exe. If your project were a Visual Basic.NET project, you would have .vb files instead, containing VB code.
.resx files contain information about resources used in your project, such as mported images, etc.