Tagged Questions
4
votes
2answers
359 views
C# Class and Oracle Mapping Parameters
I have a type declared in an Oracle Database:
CREATE OR REPLACE TYPE t_project_code_changes AS TABLE OF obj_project_code_change;
I map to this type in C# like so
...
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 ...
3
votes
2answers
178 views
Can I mark a class as not my code so the debugger steps over it?
I have a utility class that has been thoroughly tested, and I do not want the VS debugger to step into any of its methods. I think I have heard of a way to mark something as not my code so that the ...
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
2answers
192 views
Reflection and attributes — removal? modification? OR windows service in full trust?
I want to remove the security permissions from a class I don't have access to the source for. Is it possible to, via reflection, remove or modify the attribute?
...
0
votes
1answer
83 views
Add an attribute to an existing C# class without losing existing extension methods?
I have an existing partial class that has extension methods applied to it, in one project.
I want to add an attribute to that class within a different project, but when I create a second partial ...
0
votes
1answer
294 views
Webservice expose a complex type to the client in wsdl
I have (to make things easy) 2 classes
1) abstract class A
2) inherited class B from A.
now i'm using a method "callMethod(A argument)"
which is exposing my abstract class in the wsdl.
But the ...
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 ...