Tagged Questions

2
votes
5answers
66 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 …
4
votes
2answers
112 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 …
7
votes
2answers
76 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 …
0
votes
0answers
41 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
0answers
101 views

Use of the Facade pattern in .NET FCL

Does anyone know if the Facade pattern is used anywhere in the .NET FCL? Thanks Clarry
3
votes
1answer
449 views

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

Hi, 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 …
0
votes
4answers
120 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 …