0
votes
3answers
290 views
How can I check whether I am in a debug or release build in a web app?
In any (non-web) .net project, the compiler automatically declares the DEBUG and TRACE constants, so I can use conditional compiling to, for example, handle exceptions differently in debug vs relea …
1
vote
2answers
804 views
Shortest method to convert an array to a string in c#/LINQ [closed]
Closed as exact duplicate of this question.
I have an array/list of elements. I want to convert it to a string, separated by a custom …
4
votes
7answers
683 views
How do I get the month number from the year and week number in c#?
As the title says, given the year and the week number, how do I get the month number?
edit: if a week crosses two months, I want the month the first day of the week is in.
edit(2): …
0
votes
How to add to a textbox the red line (like bad spelling in Word)?
This page shows how to owner-draw a TextBox to draw the wavy red line.
…
0
votes
How can I check whether I am in a debug or release build in a web app?
This is what I ended up doing:
protected bool IsDebugMode
{
get
{
System.Web.Configuration.CompilationSection tSection;
tSection = ConfigurationManager.GetSe …
1
vote
Automatic casting to string in C# and VB.NET
I'd suggest to stay away from raw string concatenation, if possible.
Good alternatives are using string.format:
str = String.Format("Hello {0} workd", Number)
…
3
votes
C# Combine GDI+ and OpenGL/DirectX
AFAIK you can't really mix GDI+ and OpenGL/DX.
If you're getting slow performance and are absolutely sure that it's a bottleneck in GDI+ rather than in your code, than it …
-1
votes
WinForms - How do I execute C# application code from inside WebBrowser control?
What I did in VB6:
Add a bunch of custom < A > tags in the HTML document, set their href to something meaningful to you, like '#closeform'
On the BeforeNavigate method, ch …
0
votes
How do I get the month number from the year and week number in c#?
This is what I ended up doing:
static int GetMonth(int Year, int Week)
{
DateTime tDt = new DateTime(Year, 1, 1);
tDt.AddDays((Week - 1) * 7);
for (int i = 0; i <= …
3
votes
Firefox ignores Response.ContentType
Try adding a Response.ClearHeaders() before calling ClearContents() like x2 mentioned and sending the file as application/octet-stream:
Respon …
