Search Results

1
vote
6answers
704 views

Can I get calling instance from within method via reflection/diagnostics?

Is there any way via System.Reflection, System.Diagnostics or other to get a reference to the actual instance that is calling a static method without passing it in to the method itself. For …
19
votes

How to Compare Flags in C#?

if ((testItem & FlagTest.Flag1) == FlagTest.Flag1) { // Do something } …
1
vote

Why is .NET exception not caught by try/catch block?

I downloaded the sample VS2008 project, and am a bit stumped here too. I was able to get past the exceptions however, although probably not in a way that will work will great for you. But here's …
3
votes

Modifying default tab size in RichTextBox

You can set it by setting the SelectionTabs property. privat …