|
I just downloaded the ASP.NET MVC beta and the templates are not StyleCop compliant.
Why is new .NET code coming from Microsoft not StyleCop compliant?
Started by Peter on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
So, Microsoft MVC team is free to be Style cop non compliant.
Something has to drive change.
About being compliant with style cop:
Style cop has rules that are good in general.
|
|
Does Visual Studio 2008 support HTML 5 compliant code generated for browsers?
Started by Ravia on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Addition: I just made a ASP.NET WebApplication in Visual the generated HTML output of ASP.NET Webforms... .
It doesn't have support for canvas and video generates compliant code, then yes, it does.
With proper closed tags.
compliant code, ie.
|
|
I have C# wrapper of a C Library. It has a method that returns an sbyte that is supposed to represent a char. I can use Convert.ToChar but this is not CLS-compliant. What is the best practice for converting this sbyte to a char compliantly?
Started by Skippy on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at stackoverflow):
Make the wrapper use byte..
The question :) Sbyte is not cls compliant to begin with.
|
Ask your Facebook Friends
|
Currently I'm learning all the stuff around key-value coding.
In the docs they say:
Any object in the key path sequence that is not key-value coding compliant for the appropriate key receives a valueForUndefinedKey: message.
I try to imagine a situation...
Started by Thanks on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you read carefully, you'll see it says "key-value coding compliant for the appropriate key to valueForUndefinedKey: because NSString is not KVC-compliant for the key "dippingSauce" — it doesn't compliant for the appropriate key....
|
|
I just pasted some generated javadoc into an eclipse project, to discover none of the HTML is compliant.
There is even cases of closing tags that were never opened.
Is there some way to fix this? Maybe a "be compliant" option...
Started by Dean on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
XHTML Doclet is a standards-compliant.
After some googling, I discovered XHTML Doclet 0.4.
|
|
Why do I get, "Identifier 'Logic.DomainObjectBase._isNew' is not CLS-compliant"?
public abstract class DomainObjectBase { protected bool _isNew; }
Started by MatthewMartin on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
CLS-complaint; } }
The leading _ is non-CLS compliant....
CLS-compliant language compilers must follow the rules of Annex 7 of Technical Report 15 with an underscore - this violates CLS compliant on a visible (public/protected) field.
|
|
Why are unsigned int's not CLS compliant. I start to think type-specification is just for performance, and not for correctness.
Started by doekman on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
That all CLS-compliant languages can produce verifiable code if they choose to do so."
Update: I did if there is absolutely no concept, ever? Unsigned integers are not CLS compliant because they're.
|
|
I have a couple of nagging compiler warnings for an app that I ported from VB6 a while back regarding CLS-Compliance including:
Name '_AnIdentifier' is not CLS-Compliant. Type of parameter 'myType' is not CLS-Compliant.
Despite this, my app seems to perform...
Started by JohnFx on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Incorrect obfuscated code when code that isn't CLS-compliant is obfuscated..
|
|
Anyone know of a keyboard that has both a fingerprint and smart card reader and is FIPS 201 compliant?
Edit : I'm looking for a product that is currently on the market and certified.
Started by Taylor L on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
That's the sensor used in the G83-14401
UPEK.
Release , the sensor TouchChip TSC1 is FIPS 201 compliant.
|
|
Background:
I have a collegue who needs to convert text from a PL/SQL method into XML compliant text, as he is constructing a excel spreadsheet by updating a text template.
Started by Bravax on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
(Note: The extractValue function will convert the text back to the non-XML compliant version.)..
The text XML compliant, then using the extract function, it will extract the text out as is.
|