0

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

12
  • The icon is on a file generated automactically by nettiers
    – greb22
    Commented Jan 22, 2015 at 18:31
  • 3
    There are 34 different toolbars - you might have to be more specific Commented Jan 22, 2015 at 18:32
  • Sorry I just edited it its in the solution explorer.
    – greb22
    Commented Jan 22, 2015 at 18:33
  • I think you're referring to the icon for "Navigate Forward," which means "go to the spot in the code my cursor was just at before I hit "Navigate Backward." Edit: if it's in the Solution Explorer, I have no idea.
    – adv12
    Commented Jan 22, 2015 at 18:33
  • @adv12 no not that one that one has a description when you hover over it
    – greb22
    Commented Jan 22, 2015 at 18:34

2 Answers 2

2

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

2
  • 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
    Commented Jan 22, 2015 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: <Filename>.Designer.cs)
    – Velox
    Commented Jan 22, 2015 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

Not the answer you're looking for? Browse other questions tagged or ask your own question.