The type System.Web.UI.CssStyleCollection represents a collection of items (as its name indicates), but it doesn't implement IEnumerable or IEnumerable<T>.
This means it can't be accessed well from L…
Created on 5/9/2013 (updated 1 week ago) | 0 validations | 0 workarounds | 2 comments | feedback id: 786670
|
|
Per http://social.msdn.microsoft.com/Forums/en-US/tpldataflow/thread/dc600358-2b5b-47a9-9e6b-a5e5a054d402#1c75b284-cf7e-479b-8793-a29746396cf2, under certain circumstances, Receive() on a TPL Dataflow…
Created on 4/20/2013 (updated 3 weeks ago) | 2 validations | 0 workarounds | 3 comments | feedback id: 785185
|
|
The documentation for AssemblyBuilder.DefineDynamicModule(String) [1] says:
> The defined dynamic module is transient. The dynamic module is not saved, even if the parent dynamic assembly was created…
Created on 4/5/2013 (updated 6 weeks ago) | 0 validations | 0 workarounds | 2 comments | feedback id: 783090
|
|
The string type doesn't seem to implement the IEnumerable<char> interface in .Net for Windows Store apps. This means that LINQ (and other helper methods that expect IEnumerable<T>) doesn't work.
I th…
Created on 1/30/2013 (updated 8 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 777868
|
|
|
Closed
as Fixed
|
|
I often create small test projects, so my VS is configured to create temporary projects that aren't saved to the disk (actually, they are saved in AppData\Local\Temporary Projects\).
But in VS2012RC,…
Created on 6/7/2012 (updated 30 weeks ago) | 0 validations | 0 workarounds | 9 comments | feedback id: 747247
|
|
|
Closed
as External
|
|
I have configured both VS2010 and VS2012RC with C# as the primary language. In VS2010, Visual C++ shows under Other Languages in the New Project window. But in VS2012RC, there is no Visual C++ group. …
Created on 6/5/2012 (updated 48 weeks ago) | 0 validations | 0 workarounds | 6 comments | feedback id: 746690
|
|
|
Resolved
as Not Reproducible
|
|
In the MSDN documentation for TPL Dataflow blocks (e.g. http://msdn.microsoft.com/en-us/library/hh194745%28v=vs.110%29.aspx), their extension methods show with incorrect generic parameters in the meth…
Created on 6/5/2012 (updated 50 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 746565
|
|
|
Closed
as External
|
|
I just upgraded Visual Studio 11 Beta to the new Visual Studio 2012 RC and have problems referencing TPL Dataflow.
First, I tried to reference Dataflow as I did previously, by adding a reference from…
Created on 6/5/2012 (updated 1 week ago) | 3 validations | 2 workarounds | 10 comments | feedback id: 746558
|
|
|
Closed
as Fixed
|
|
When calling ToString() on an XAttribute that contains control character, an ArgumentException is thrown with a message like: hexadecimal value 0x0B, is an invalid character. This exception is not do…
Created on 2/6/2012 (updated 50 weeks ago) | 0 validations | 0 workarounds | 6 comments | feedback id: 723680
|
|
|
Closed
as Fixed
|
|
See my Stack Overflow answer http://stackoverflow.com/a/9050082/41071
Basically, when a virtual property has a private accessor:
public virtual object Property
{
get { return null; }
private…
Created on 1/28/2012 (updated 5 weeks ago) | 0 validations | 0 workarounds | 4 comments | feedback id: 721369
|
|