¡@

Home 

c# Programming Glossary: encountered

HttpClient.GetAsync(…) never returns when using await/async

http://stackoverflow.com/questions/10343632/httpclient-getasync-never-returns-when-using-await-async

appears to be stuck in WaitingForActivation state. I've encountered some odd behaviour using the System.Net.Http.HttpClient in .NET.. except for api test5 which never completes. Have I encountered a bug in the HttpClient class or am I misusing the API in some..

What strategies and tools are useful for finding memory leaks in .NET?

http://stackoverflow.com/questions/134086/what-strategies-and-tools-are-useful-for-finding-memory-leaks-in-net

finding memory leaks in .NET I wrote C for 10 years. I encountered memory problems but they could be fixed with a reasonable amount..

Sometimes adding a WCF Service Reference generates an empty reference.cs

http://stackoverflow.com/questions/1408509/sometimes-adding-a-wcf-service-reference-generates-an-empty-reference-cs

reference the service anywhere in the project. Has anyone encountered this c# .net wcf share improve this question Generally..

What are regular expression Balancing Groups?

http://stackoverflow.com/questions/17003799/what-are-regular-expression-balancing-groups

group. Again every time a group with a certain name is encountered a capture is pushed onto its stack. So applying this regex to..

Performance of calling delegates vs methods

http://stackoverflow.com/questions/2082735/performance-of-calling-delegates-vs-methods

question I haven't seen that effect I've certainly never encountered it being a bottleneck. Here's a very rough and ready benchmark..

C# Object Pooling Pattern implementation

http://stackoverflow.com/questions/2510975/c-sharp-object-pooling-pattern-implementation

loadingMode LoadingMode.LazyExpanding Unknown LoadingMode encountered in Acquire method. return AcquireLazyExpanding public void..

Is method hiding ever a good idea

http://stackoverflow.com/questions/2663274/is-method-hiding-ever-a-good-idea

without overriding the base class method. I've never encountered a situation where hiding a method was the best choice available...

How deterministic is floating point inaccuracy?

http://stackoverflow.com/questions/328622/how-deterministic-is-floating-point-inaccuracy

versions. I gather that there are some not uncommonly encountered examples of this in gcc 3 vs 4. 4. The IEEE itself allows some..

Why can't yield return appear inside a try block with a catch?

http://stackoverflow.com/questions/346365/why-cant-yield-return-appear-inside-a-try-block-with-a-catch

There are a few things like this that I've already encountered Attributes not being able to be generic Inability for X to derive..

I get a “An attempt was made to load a program with an incorrect format” error on a SQL Server replication project

http://stackoverflow.com/questions/41449/i-get-a-an-attempt-was-made-to-load-a-program-with-an-incorrect-format-error-o

to run on my local machine running Vista 64bit I encountered this error Could not load file or assembly ChilkatDotNet2 or..

How do you get the index of the current iteration of a foreach loop?

http://stackoverflow.com/questions/43021/how-do-you-get-the-index-of-the-current-iteration-of-a-foreach-loop

loop Is there some rare language construct I haven't encountered like the few I've learned recently some on Stack Overflow in..

Main method code entirely inside try/catch: Is it bad practice?

http://stackoverflow.com/questions/4827628/main-method-code-entirely-inside-try-catch-is-it-bad-practice

can handle . And should a truly unexpected exception be encountered during the course of your program's execution you actually should.. try except around your server's methods. If your server encountered what would normally be an unhandled exception the giant try.. robustness by keeping the server running even when it encountered a problem. Mind you this was actually a disservice. The fact..

Is C# really slower than say C++?

http://stackoverflow.com/questions/5326269/is-c-sharp-really-slower-than-say-c

this by interpreting the code the first few times it's encountered. It profiles how often it's interpreting particular code and..

How to test file download with Watin / IE9?

http://stackoverflow.com/questions/7500339/how-to-test-file-download-with-watin-ie9

pump for any kind of child window. When child windows are encountered the DialogWatcher checks to see if the window is specifically..

Large WCF web service request failing with (400) HTTP Bad Request

http://stackoverflow.com/questions/784606/large-wcf-web-service-request-failing-with-400-http-bad-request

service request failing with 400 HTTP Bad Request I've encountered this apparently common problem and have been unable to resolve..

Is there an effective tool to convert C# code to Java code?

http://stackoverflow.com/questions/78811/is-there-an-effective-tool-to-convert-c-sharp-code-to-java-code

java porting share improve this question I have never encountered a C# Java conversion tool. The syntax would be easy enough but..

What is a method group in C#?

http://stackoverflow.com/questions/886822/what-is-a-method-group-in-c

is a method group in C# I have often encountered an error such as cannot convert from 'method group' to 'string'..