Search Results

3
votes

C#: Is Implicit Arraylist assignment possible?

Depending on the version of C# you are using, you have different options. C# 3.0 has collection initializers, detail at …
1
vote

C#: Is Implicit Arraylist assignment possible?

Your comments imply you chose ArrayList because it was the first component you found. Assuming you are simply looking for a list of integers, this is probably the best way of doing that. …
0
votes

Why aren’t variables declared in “try” in scope in “catch” or “finally”?

While in your example it is weird that it does not work, take this similar one: try { //Code 1 String s = "1|2"; //Code 2 } catch { …
2
votes

Is there any built-in way to convert an integer to a string (of any base) in C#?

They probably did it to support negative numbers, since 2's compliment doesn't make sense in base 3. Also to eliminate someone typing a 7 instead of an 8, since the uses for arbitrary bases are few …
-3
votes

Resources that have to be manually cleaned up in C#?

The garbage collector will handle any managed resources. In your example, the brush will be cleaned up when the garbage collector decides to, which will happen some time after the last reference to …
0
votes

C#: Try-catch every line of code without individual try-catch blocks

Unfortunately you are probably out of luck. On Error Resume Next is a legacy option that is generally heavily discouraged, and does not have an equivalent to my knowledge in C#. I would rec …
7
votes

Testing if an Object is a Dictionary in C#

Check to see if it implements IDictionary. See the definition of System.Collections.IDictionary to see what that gives you. if (listBox.ItemsSource is IDictionary) { Dic …
0
votes

Can I turn off impersonation just in a couple instances.

You could turn off authentication for the page and then manually impersonate the authenticated user during the remainder of your code. …
5
votes

Managed language for scientific computing software

You are asking a fundamentally flawed question. The entire point of managed languages is that you don't handle memory. That is handled by the Garbage Collector, while you can make certain actions t …
1
vote

Managing ThreadPool starvation within a multithreaded work queue processor?

For simple cases like this an additional monitoring thread that can spin off more threads on demand is helpful. Basically every N seconds check to see if any jobs have been finished, if not …
0
votes

Is there any way to use an extension method in an object initializer block in C#

Is extending the class a possibility? Then you could easily add the property you need. Failing that, you can create a new class that has similar properties that simply call back to a privat …
2
votes

Create anonymous object by Reflection in C#

Here is another way, seems more direct. object anon = Activator.CreateInstance(existingObject.GetType()); …
0
votes

Compiler fails converting a constrained generic type.

This will lead to a bit more code if you have a lot of ElementDefinitions you are worried about, but is probably the slickest you will get that doesn't involve is then as nonsense. …
0
votes

ASP.Net and GetType()

page.GetType().BaseType, it has been said before, but let me elaborate as to why. Aspx pages inherit from their code-behind pages, meaning that the inheritance hierarchy looks like this: …
0
votes

C# streaming sockets, how to separate messages?

You could also, if you wanted to preserve the plaintextness of it, specify a specific maximum size and pad the number via string.Format. (Say for instance only allowing 4 characters in the length) …

1 2 next
15 30 50 per page