First  |  Prev |  Next  |  Last
Pages: 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
Where is my thread?
I posted a question about "Search for a value in multi-dimensionla array" an hour ago; where did that go? ... 17 May 2010 18:01
Seach for a value in multi-dimensional array in 2005/2008
object[,] siblings = { { "John", 25 }, { "Mike", 30 }, { "Tom", 40 } }; Let say I have a value: string searchString = "Mike"; How do I search for the [searchString] in the array siblings and get the age (in case of Mike, it is 30)? ... 20 May 2010 11:40
send basic text to webserver
hi all, i would like to send the following text from GPRS device A wthin the quotes to below webserver, also would like to capture responce from server: initial message from device A sent to web server is "000001 Flow Level : 0000012" web server will respond with "#Success" when it sucessfully processes this... 17 May 2010 19:08
When to use one application domain instead of several
Hi! Assume that have an assembly called myAssembly.exe and this must be running in two instances then I have two alternatives. 1. Let this myAssembly.exe be running in two threads in one application domain. 2. Let this myAssembly.exe be running in two appliaction domain using a one thread in each. So my ... 17 May 2010 19:08
object named argument
In Vs2k10, when I write IAsyncResult result = myFunkyDelegate.BeginInvoke(arg1, arg2, ...) Intellisense offers named arguments, e.g. "callback:", in which case I write callback: new AsyncCallback(myMethod). For the argument that is passed to the callback method, Intellisense offers "object:". If I accept ... 17 May 2010 10:13
More about application domain
Hi! If I want to have 5 application domain and in each one have the assembly test1.exe and test2.exe be executing. the only way to do this is to have 5*2 = 10 threads be running. This must be correct ? Now to one more question when you run two assemblies test1.exe and test2.exe in th esame application dom... 17 May 2010 20:14
Data bind only visible fields
I'm new to C#. I noticied that if I bind a formview to an SQL table, when I click update all fields are updated, and not only those that are visible (bound). Is this the standard behaivour? If not, how do I allow updates only on those fields that are bound? I tried with datasets and linq2sql. Thanks! ... 17 May 2010 08:02
application domain
Hi! At the end I have some text from the book that I'm reading. Will 10 application domain be used no matter if these 10 peope use the same url for example www.test.mynice.web.com or using different web site like www.web1.com www.web2.com www.web3.com www.web4.com www.web5.com www.web6.com www.web7.com ... 17 May 2010 12:26
Unique List (List + Dictionary?)
For example, I want to extract unique words from some text. Using List<string> to store the extracted words in the following way will be inefficient List<String> words; foreach(String word in text) { if(words.Contains(word)==false) words.Add(word); } because, according to the documentation, the Contains is a... 19 May 2010 12:42
Help Break-In Mockina
Hello: A few weeks ago, I started working on a new mock framework, called Mockina. My goal was to provide a Moq-like interface for mocking interfaces and classes, but I wanted to provide the exact same syntax whether you were mocking a public or non-public member. I used .NET 4.0 dynamics to allow lambda syntax ... 16 May 2010 20:08
First  |  Prev |  Next  |  Last
Pages: 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42