Minimalist
Minimalist

Reputation: 975

Visual Studio 10 file extensions

I'm relatively new at MS Visual Studio 2010. What is the role for the file names .cs and .resx?

Upvotes: 1

Views: 1662

Answers (2)

MikeB
MikeB

Reputation: 2452

The .cs holds C# source code

The .resx resource file format consists of XML entries, which specify objects and strings inside XML tags

Upvotes: 1

David
David

Reputation: 73594

.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.

Upvotes: 4

Related Questions