Tagged Questions
6
votes
2answers
145 views
Class attribute evaluation and generators
How exactly does Python evaluate class attributes? I've stumbled across an interesting quirk (in Python 2.5.2) that I'd like explained.
I have a class with some attributes that are defined in terms ...
5
votes
7answers
716 views
Real world use of custom .NET attributes
What kind of things have you used custom .NET attributes for in the real world?
I've read several articles about them, but I have never used custom attributes.
I feel like I might be overlooking ...
4
votes
1answer
227 views
Overriding inheritance on intrinsic attributes in C#
After wrestling with a bunch of uncaught exceptions when trying to serialize my classes and subclasses, I've finally understood what my problem had been: [Serializable] isn't inherited by subclasses ...
3
votes
2answers
62 views
How to reference the type of a private class from an assembly-level attribute?
I have defined an assembly level attribute class FooAttribute like this:
namespace Bar
{
[System.AttributeUsage (System.AttributeTargets.Assembly, AllowMultiple=true)]
public sealed class ...
2
votes
2answers
51 views
Python paradigm for “derived fields”/“class attributes from calculations”
I have a class that, let's say, computes a person's insurance risk, and a few other variables are computed during computation. I will need access to the risk and the other variables later.
class ...
2
votes
3answers
211 views
What's the simplest most elegant way to utilize a custom attribute
So a little confession, I've never written an attribute class. I understand they serve the purpose of decorating classes with flags or extra functionality possibly.
Can someone give me a quick ...
1
vote
1answer
298 views
Inheritable attributes in ruby classes
Greets to all!
I want to describe each kind of product by a class:
# Base product class
class BaseProduct
prop :name, :price # Common properties for all inheritable products
end
class Cellphone ...
0
votes
2answers
60 views
How can I apply one or more attributes to all classes in a project?
Hi
How can I apply an attribute to all classes in a particular project?!
And is it enough to apply CLSCompliant attribute to just one class or do I have to apply to all classes?
Thanks for your ...
0
votes
5answers
151 views
Possibility of Implementing Minimize-to-Tray in C# in an Attribute
Attributes are awesome. But is it possible to create a C# attribute class that, when tagged, makes your application minimize to the system tray?
Technically, the attribute would need to be placed on ...