Tagged Questions

The attributes tag should be used for any issues relating to a property of an object, element, or file, etc.

learn more… | top users | synonyms (1)

221
votes
28answers
15k views

Most Useful Attributes in C#

I know that attributes are extremely useful. There are some predefined ones such as [Browsable(false)] which allows you to hide properties in the properties tab. Here is a good question explaining ...
128
votes
4answers
21k views

What are differences between AssemblyVersion, AssemblyFileVersion and AssemblyInformationalVersion?

There are three assembly version attributes. What are differences? Is it ok if I use AssemblyVersion and ignore the rest? MSDN says: AssemblyVersion: Specifies the version of the assembly ...
83
votes
4answers
8k views

Why does C# forbid generic attribute types?

This causes a compile-time exception: public sealed class ValidatesAttribute<T> : Attribute { } [Validates<string>] public static class StringValidation { } I realize C# does not ...
79
votes
6answers
23k views

How to know if an object has an attribute in Python

Is there a way in Python to determine if an object has some attribute? For example: >>> a = SomeClass() >>> a.someProperty = value >>> a.property Traceback (most recent ...
55
votes
12answers
5k views

.NET: What are attributes?

What are they, what are they good for, and how do I create my own attributes?
45
votes
6answers
7k views

What are the best practices for using Assembly Attributes?

I have a solution with multiple project. I am trying to optimize AssemblyInfo.cs files by linking one solution wide assembly info file. What are the best practices for doing this? Which attributes ...
39
votes
11answers
15k views

How to Compare Flags in C#?

I have a flag enum below. [Flags] public enum FlagTest { None = 0x0, Flag1 = 0x1, Flag2 = 0x2, Flag3 = 0x4 } I cannot make the if statement evaluate to true. FlagTest testItem = ...
37
votes
8answers
50k views

Check existence of an attribute with JQuery

I have a colection of checkboxes with generated ids and for a reason, some have an extra attribute. Is possible using JQuery to check if an element has a specific attribut ? For example can I verify ...
35
votes
5answers
18k views

Python dictionary from an object's fields

Do you know if there is a built-in function to build a dictionary from an arbitrary object? I'd like to do something like this: >>> class Foo: ... bar = 'hello' ... baz = 'world' ... ...
34
votes
7answers
14k views

Difference between id and name tag attributes HTML

Hi guys what is the difference between the id and name attributes? they both seem to serve the same purpose of providing an identifier. I would like to know (specifically with regards to ASP.net web ...
34
votes
8answers
11k views

Localization of DisplayNameAttribute

I am looking for a way to localize properties names displayed in a PropertyGrid. The property's name may be "overriden" using the DisplayNameAttribute attribute. Unfortunately attributes can not have ...
33
votes
7answers
5k views

Custom Compiler Warnings

When using the ObsoleteAtribute in .Net it gives you compiler warnings telling you that the object/method/property is obsolete and somthing else should be used. I'm currently working on a project that ...
30
votes
9answers
13k views

Can attributes be added dynamically in C#?

Is it possible to add attributes at runtime or to change the value of an attribute at runtime?
29
votes
7answers
18k views

Find a private field with Reflection?

Given this class class Foo { // Want to find _bar with reflection [SomeAttribute] private string _bar; public string BigBar { get { return this._bar; } } } I want ...
26
votes
8answers
7k views

How best to use File Version and Assembly Version?

In .NET there are two version numbers available when building a project, File Version and Assembly Version. How are you using these numbers? Keeping them the same? Auto-incrementing one, but ...
24
votes
7answers
2k views

Is there a limit to the length of HTML attributes?

How long is too long for an attribute value in HTML? I'm using HTML5 style data attributes (data-foo="bar") in a new application, and in one place it would be really handy to store a fair whack of ...
23
votes
5answers
891 views

Adding values to a magento dropdown or multi-select product attribute while adding a new product

I'm wondering if anyone has found or written an extension that would allow a magento website administrator the ability to add values to their products attribute while adding the product. For example, ...
23
votes
2answers
8k views

Can a C# class inherit attributes from its interface?

This would appear to imply "no". Which is unfortunate. [AttributeUsage(AttributeTargets.Interface | AttributeTargets.Class, AllowMultiple = true, Inherited = true)] public class ...
22
votes
4answers
988 views

Compelling Reasons to Use Marker Interfaces Instead of Attributes

It's been discussed before on Stack Overflow that we should prefer attributes to marker interfaces (interfaces without any members). Interface Design article on MSDN asserts this recommendation too: ...
22
votes
3answers
2k views

How do Perl method attributes work?

A little known built-in Perl feature is attributes. However, the official documentation is doing a rather bad job introducing newbies to the concept. At the same time, frameworks like Catalyst use ...
22
votes
3answers
8k views

C# - how enumerate all classes with custom class attribute?

Question based on MSDN example: http://msdn.microsoft.com/en-us/library/aa288454(VS.71).aspx Let's say we have some C# classes with HelpAttribute in standalone desktop application. Is it possible to ...
22
votes
2answers
3k views

C# - Attribute to Skip over a Method while Stepping in Debug Mode

Is there an attribute I can use on a method so that when stepping through some code in Debug mode the Debugger stays on the outside of the method?
18
votes
4answers
7k views

Getting attributes of Enum's value

I would like to know if it is possible to get attributes of the enum values and not of the enum itself? For example, suppose I have the following enum: enum FunkyAttributesEnum { [Description("Name ...
18
votes
10answers
988 views

Best practices: When should I use elements and when should I use attributes?

Which would be the correct format for this XML data, are they equivalent or are there trade offs between the two? 1. <sitemap> <category name="Animals"> <section ...
17
votes
5answers
294 views

Rails Models: how would you create a pre-defined set of attributes?

I'm trying to figure out the best way to design a rails model. For purposes of the example, let's say I'm building a database of characters, which may have several different fixed attributes. For ...
17
votes
2answers
4k views

Why can't you add attributes to object in python?

(Written in Python shell) >>> o = object() >>> o.test = 1 Traceback (most recent call last): File "<pyshell#45>", line 1, in <module> o.test = 1 AttributeError: ...
17
votes
7answers
44k views

How to get select radiobutton value using its name in jQuery?

I am having 4 radiobuttons in my web page like below: <label for="theme-grey"><input type="radio" id="theme-grey" name="theme" value="grey" />Grey</label> <label ...
17
votes
7answers
43k views

JavaScript: changing the value of onclick with or without jQuery

I'd like to change the value of the onclick attribute on an anchor. I want to set it to a new string that contains JavaScript. (That string is provided to the client-side JavaScript code by the ...
17
votes
4answers
4k views

Can I just make up attributes on my HTML tags?

Am I allowed to add whatever attributes I want to HTML tags such that I can retrieve their value later on using javascript? For example: <a href="something.html" hastooltip="yes" ...
16
votes
3answers
156 views

Is there an alternative to large messy attributes?

I often find that attributes can be too large. Sometimes it feels like the attributes take up more of the screen than the code. It can make it hard to spot the method names. Also, they are not ...
16
votes
3answers
1k views

(.net) When is an attribute's constructor run?

When is it run? Does it run for each object to which I apply it, or just once? Can it do anything, or its actions are restricted?
16
votes
6answers
5k views

NUnit Test Run Order

By default nunit tests run alphabetically. Does anyone know of any way to set the execution order? Does an attribute exist for this? Any help would be greatly appreciated. Thanks Zaps
16
votes
4answers
9k views

Get an object attributes list in Objective-C

How can I get a list (in the form of an NSArray or NSDictionary) of a given object attributes in Objective-C? Imagine the following scenario: I have defined a parent class which just extends ...
16
votes
2answers
11k views

How do you programmatically set an attribute in Python?

Suppose I have a python object x and a string s, how do I set the attribute s on x? So: >>> x = SomeObject() >>> attr = 'myAttr' >>> # magic goes here >>> x.myAttr ...
16
votes
3answers
4k views

How to read assembly attributes

In my program, how can I read the properties set in AssemblyInfo.cs: [assembly: AssemblyTitle("My Product")] [assembly: AssemblyDescription("...")] [assembly: AssemblyConfiguration("")] [assembly: ...
15
votes
5answers
225 views

Why does this code compile without error even though the class is marked Obsoleted?

This is Visual Studio 2008. Obviously has to do with the static class for an extensions. public class Dummy { public readonly int x; public Dummy(int x) { this.x = x; } ...
15
votes
5answers
2k views

What's the difference between using the Serializable attribute & implementing ISerializable?

What's the difference between using the Serializable attribute and implementing the ISerializable interface?
15
votes
6answers
460 views

What are [] in C#?

For example: [TestFixtureSetUp] public void Init() { GetTestRepo(false); } [TestFixtureSetUp] in this example, what does it do? From my experience, [] usually refers to ...
15
votes
8answers
17k views

private final static attribute vs private final attribute

In java, what's de difference between: private final static int NUMBER = 10; and private final int NUMBER = 10; both are private and both are final, the difference is the static attribute. What's ...
15
votes
2answers
8k views

How to pass objects into an attribute constructor

I am attempting to pass objects into an Attributes constructor as follows: [PropertyValidation(new NullOrEmptyValidatorScheme())] public string Name { get; private set; } With this attribute ...
15
votes
10answers
2k views

Attributes in C#

I know that C# (and .NET in general) is big on attributes. However, despite the fact I have programmed in C# for many years, I haven't found myself ever using them. Would someone get me started on ...
15
votes
8answers
5k views

Python function attributes - uses and abuses

Not many are aware of this feature, but Python's functions (and methods) can have attributes. Behold: >>> def foo(x): ... pass ... >>> foo.score = 10 >>> dir(foo) ...
15
votes
4answers
3k views

Python: Difference between class and instance attributes

Is there any meaningful distinction between: class A(object): foo = 5 # some default value vs. class B(object): def __init__(self, foo=5): self.foo = foo If you're creating a ...
14
votes
3answers
14k views

Html attributes for EditorFor() in ASP.NET MVC

Why can't I pass in html attributes to EditorFor()? eg; <%= Html.EditorFor(model => model.Control.PeriodType, new { disabled = "disabled", readonly = "readonly" }) %> I don't want to ...
14
votes
5answers
2k views

What does “href” stand for in HTML?

I understand what the "href" attribute in the anchor tag (<a />) is for, but what does the "h" stand for?
14
votes
3answers
1k views

What does [STAThread] do?

Hi I am learning C# 3.5 and wanna to know that what [STAThread] do in our programs? Thank you
14
votes
5answers
23k views

How to stop event propagation with inline onclick attribute?

Consider the following: <div onclick="alert('you clicked the header')" class="header"> <span onclick="alert('you clicked inside the header');">something inside the header</span> ...
14
votes
10answers
2k views

C++0x Attributes you'd like to see

Recently voted into the C++0x working paper was an attribute syntax. This syntax provides a way to specify other pieces of information to the compiler. The Committee Draft also includes several ...
14
votes
4answers
30k views

Html.TextBox conditional attribute with ASP.NET MVC Preview 5

I have a strongly-typed MVC View Control which is responsible for the UI where users can create and edit Client items. I'd like them to be able to define the ClientId on creation, but not edit, and ...
13
votes
1answer
271 views

Is this an C# 4.0 compiler optional parameters bug?

I'm writing custom security attribute and got strange compiler behaviour... When I'm using the attribute at the same file, default parameter values works fine: using System.Security.Permissions; ...

1 2 3 4 5 56