Search Results

Search found 2 results on 1 pages for 'lexl'.

Page 1/1 | 1 

  • How to install VS.NET 2010 without Team Explorer

    - by LexL
    Since we don't use and don't plan to use TFS, it would be nice to not install Team Explorer VS.NET addon and not see any references to it. However this is no TFS option in customized install. Is there some way to install plain-vanilla VS.NET 2010 without it? Or maybe there is some kind of TFS uninstaller?

    Read the article

  • Localizing formatting functions instead of properties in VS.NET resources

    - by LexL
    I noticed that .NET framework uses formatting functions, generated the same way localizable string are. There is a resource file Resources.resx with resource string TestString. So you may use it in code like this: string localizableValue = Resources.TestString; Now, imagine you need a formattable localizable string, to use it in string.Format function. So everytime you use it, you have to write something like this: string localizableFormattedValue = string.Format(Resources.TestFormatString, someParam1, someParam2); The observation says that in .NET framework generated resource classes already include the above construction. So instead of string property, a string function is generated. The resulting code looks like this: string localizableFormattedValue = Resources.TestFormatString(someParam1, someParam2); The question is - how do they do this? Is it some custom Microsoft feature (resx generator) or I'm missing something obvious?

    Read the article

1