Tagged Questions

Framework Class Library

learn more… | top users | synonyms

16
votes
2answers
373 views

Why is the Process class in the Diagnostics namespace?

Why is the Process class part of the Diagnostics namespace? This is a part of design of the BCL that kept me wondering for some time now. I find it kind of counter-intuitive, I fail to see the ...
6
votes
2answers
511 views

Is BigInteger immutable or not?

In .NET 4 beta 2, there is the new Numerics namespace with struct BigInteger. The documentation states that it is an immutable type, as I would have expected. But I'm a little confused by the ...
5
votes
2answers
364 views

Programmatically use XSD.exe tool feature (generate schema from class) through .NET Framework classes?

I want to generate an XML Schema based upon a class, just as you can do with the Xsd.exe tool. E.g. xsd.exe /type: typename /outputdir:c:\ assmeblyname. Is there a way to do this by using classes ...
3
votes
3answers
168 views

Generic built-in EventArgs to hold only one property?

I have a number of EventArgs classes with only one field and an appropriate property to read it: public class SomeEventArgs : EventArgs { private readonly Foo f; public SomeEventArgs(Foo f) ...
3
votes
2answers
95 views

Is there any class in the .NET Framework to represent a holding container for objects?

I am looking for a class that defines a holding structure for an object. The value for this object could be set at a later time than when this container is created. It is useful to pass such a ...
3
votes
3answers
1k views

How to force Webbrowser component to always open web page in the same window?

I need to use webbroser in my application as it keeps repetitive tasks from employees, but there is aproblem with javascript that opens a new window in IE after clicking on anchor. How do I tell ...
2
votes
1answer
341 views

Why is SerializableAttribute not included in the Silverlight version of FCL?

Why is SerializableAttribute not included in the Silverlight version of FCL? And also, BinaryFormatter is not in there either. I am not looking for an alternative solution, I am just curious about ...
2
votes
1answer
691 views

Programmatically use XSD.exe tool feature (generate class from XSD Schema) through .NET Framework classes?

I want to generate a class from an XML XSD Schema, just as you can do with the Xsd.exe tool. E.g. XSD.exe /namespace:Generated.Xsd_1 /classes /outputdir:..\Classes Is there a way to do this by ...
2
votes
5answers
149 views

Should I put custom code inside Microsoft's BCL/FCL namespaces?

A .NET programmer is allowed to wrap code inside namespaces and also to use a namespace already defined, even those defined by Microsoft in the Framework or Base Class Library. For example if I were ...
1
vote
1answer
66 views

What is the difference in intent between the serializers in FCL?

This question does a good job of explaining the difference in functionality between the serializers. BinaryFormatter is fast, XmlSerializer is interoperable, etc. I know that. But what is the ...
0
votes
0answers
100 views

What are your most useful, lesser-known classes from the .Net FCL/BCL (any version)?

I don't know how many times I've come across old code I've written and been able to replace it with a FCL class and halved the amount i needed to write,..but it's a LOT! From simple things like ...
0
votes
4answers
194 views

Does FCL already have an exception meaning method execution fail?

I have my own exception, which been throwing on execution fail of a method (p/invoke in my case). public PInvokeException(string methodName) : base(String.Format(CultureInfo.CurrentCulture, "An error ...