3
votes
How to stream a pdf as binary to the browser using .NET 2.0
Here you go: How To Write Binary Files to the Browser Using ASP.NET and Visual C# .NET
…
5
votes
2
votes
.NET currency formatter: can I specify the use of banker’s rounding?
Regexp is a pattern matching language. You can't do arithmetic operations in Regexp.
Do some experiements with IFormatProvider and ICustomFormatter. Here is a link might po …
0
votes
how do i read a time value and then insert it into TimeSpan variables
You can't change the properties of a TimeSpan. You need to create a new instance and pass the new values there.
…
2
votes
Create a method call in .NET based on a string value
You can use reflection. Though personally, I think you should just stick with the switch statement.
private void ShowReport(string methodName)
{
Type type = this.GetType();
…
8
votes
Copy collection items to another collection in .NET
You can use AddRange: hostCollection2.AddRange(hostCollection1).
…
4
votes
1
vote
How do you put { and } in a format string
Double the braces: string.Format("{{ {0} }}", "Hello, World"); would produce { Hello, World }
…
0
votes
Is there a way to count the number of IL instructions executed?
I use the Code Metrics add in to Reflector
The C …
2
votes
What’s the best way to round a .Net Date object to the nearest Minute?
using System;
using NUnit.Framework;
namespace SanityCheck.UnitTests.StackOverflow
{
[TestFixture]
public class DateTests
{
[Test]
public void TestMinuteRound() …
16
votes
conditional logic based on type.
I would put the method inside the interface and then let polymorphism decide which method to call
interface I
{
void Method();
}
class B : I
{
public void Method() { /* previ …
3
votes
How to get a list of all child nodes in a TreeView in .NET
Use recursion (sorry, my onboard vb.net syntax checker is weak)
Function GetChildren(parentNode as TreeNode) as List(Of String)
Dim nodes as List(Of String)
GetAllChildren(paren …
5
votes
Domain Specific Languages (DSL) and Domain Driven Design (DDD)
Domain Driven Design (DDD) is a way of thinking and communicating about the problems and its solutions.
Domain Specific Language (DSL) is a way of writing code.
They're similar bec …
2
votes
Response.Redirect(””) inside “using{ }”
Q: Or, alternatively, is there any way to exit a using block that won't cause disposal?
A: None.
See this for more info: …
3
votes
How do I get the version of an assembly without loading it?
Use AssemblyName.GetAssemblyName("assembly.dll");, then parse the name. According to …
