0

The icon is in the solution explorer next to one of the generated classes enter image description here

Pierre-Luc Pineault
  • 8,993
  • 6
  • 40
  • 55
greb22
  • 11
  • 2

2 Answers2

2

That icon indicates that it is a generated file. See the Visual Studio Image Library for details

Velox
  • 254
  • 1
  • 5
  • Do you know how those files become a subset or "subclasses" of the non-generated file? I have other generated classes that I generated that when I add manually just show up like regular classes? – greb22 Jan 22 '15 at 19:09
  • @greb22 I do not know all of the specifics on how Visual Studio flags a file as being generated. It does appear to auto-flag files based on file name patterns (ex: .Designer.cs) – Velox Jan 22 '15 at 19:26
0

Those are files (especially, resource file .resx) that are automatically generated by the designer, for instance , when you design a form with two ore more language base (localizable : true ), VS automatically generates resources files while you go through ... https://msdn.microsoft.com/en-us/library/y99d1cd3(v=vs.100).aspx

Mohammad Kanan
  • 4,452
  • 10
  • 23
  • 47