Mayank
Mayank

Reputation: 29

What would be the equivalent C# for this VB.net?

When I create a new empty web application project in VB.net I see the file Application.myapp under My Project.

The same file does not appear in C#. So what does get created in C# project which is equivalent to this file?

Upvotes: 1

Views: 638

Answers (1)

HatSoft
HatSoft

Reputation: 11191

The equivalent of Application.myapp in C# is app.config

Upvotes: 1

Related Questions