| Thread | Last Post | Replies |
|
| member references | 08 Dec 2007 20:05 GMT | 3 |
I have a lot of places where I need to read and write to members of a class given an index as a reference, and have a display title, this would be used in places like datagridview etc. the members may be nested,
|
| new features in c# 3 | 08 Dec 2007 17:34 GMT | 5 |
I just read some blogs which listed new features of c# 3.0. They listed things like Automatic Properties,Object Initializers etc. But frankly I do not see big changes from c# 2. It is not like in c# 2, they finally give us generics. Compare c# 2 to c# 1.1, generics is
|
| WebRequest.Timeout issues | 08 Dec 2007 14:53 GMT | 6 |
Here is a post from ages ago that never got replied to. However, I have experienced similar issues with WebRequest. It is as though the class will wait until the timeout is over.. I recently removed a WebRequest that attempted to retrieve content-
|
| Strange Enumerabl.Select behaviour | 08 Dec 2007 14:51 GMT | 4 |
I expected that the following code: Random RND = new Random(); var S = Enumerable.Range( 1, 2 ).Select( i => RND.NextDouble() ); foreach ( var V in S )
|
| unhandled exception: OutOfMemoryException | 08 Dec 2007 14:50 GMT | 4 |
I write a program handle a large amount of data, it run smooth on develop computer, but not on other client/test computer, even the test computer has much more resource, any setting i should concern?
|
| Input Language | 08 Dec 2007 13:38 GMT | 5 |
Well I have multiple keyboard layouts installed in my system.. I have written a program in C# such that the required input language can be selected using the following piece of code InputLanguage[] lang = new
|
| After setting "Console.TreatControlCAsInput = true" while loop needs twice return to read Input,... | 08 Dec 2007 08:36 GMT | 1 |
i am too tired now to find this out by my own, but why does my while loop "while(readline==Console.ReadLine())" needs twice return hit to read the line, after setting "Console.TreatControlCAsInput = true". How can i make it
|
| Encoding Text für writing a textfile | 08 Dec 2007 07:41 GMT | 4 |
i have a problem with teh StreamWriter Object. I want to force the Stream to write an ANSI-text. For reading from an filestream i can define the type of ASCI by setting System.Text.Encoding.Default.
|
| Does C# have an implementation of the C++ Rewind() function? | 08 Dec 2007 06:19 GMT | 1 |
|
| Generating asm file.. | 08 Dec 2007 04:32 GMT | 13 |
I have written a program in C#... Now the requirement is that I want an assembly code to be the output rather than the regular executable output.. Can anyone say how to do it..
|
| MSBuild : Building a project without building it's dependencies | 08 Dec 2007 04:18 GMT | 4 |
I'm facing a problem while building a project through MSBuild, this project is a part of a solution which has several other projects on which it depends, but I want to build this project without building it's dependencies.
|
| Encryption | 08 Dec 2007 04:18 GMT | 3 |
we have a old backend Service written in VB6 I have Re-written this service using c# A part of the service uses AspEncrypt from persist software is there a alternative in c# to get the same affect of the
|
| Abstract Classes and Interfaces relationship between C# and VB.Net | 07 Dec 2007 23:10 GMT | 5 |
I am actually a VB.Net guy, but I have worked somewhat with C++ and C#. I just want to ask about the relationship between Abstract Classes and Interfaces. My first question is if C# even has Iinterfaces. I took some Java
|
| Setting SmoothingMode.AntiAlias in a RichTextBox control | 07 Dec 2007 22:18 GMT | 2 |
Is it possible to override the onPaint event of the RichTextBox control to set the smoothing mode to anti-aliased? If so how do I do it? I havent been able to find anything about doing this on the web.
|
| Is it Possible to call a C# library (dll) from a non managed language such as Perl? | 07 Dec 2007 20:27 GMT | 2 |
I suspect that this is either not possible or really really tricky, but need to ask. We have a great deal of work done in perl in our environment, and we are currently starting to do more work with .Net and C#. A marriage of the two would be nice. I believe its fairly
|