| Thread | Last Post | Replies |
|
| why there is no specialized generics? | 04 Nov 2007 16:00 GMT | 1 |
Why there are no specializations of generics in C# similar to those in C++? Is there a fundamental reason for that? If there is no, can we expect to have it ... eventually? We write performance critical software in C# and it is very often
|
| Reading in a text then using the data? | 04 Nov 2007 15:43 GMT | 3 |
I am trying to read in a text file then use the data in the file. I know how to read a file wiht the System.IO namespace: FileRead fr = new StreamReader("data.txt"); Console.Writeline(fr.Readline());
|
| How to debug Powershell commandlets? | 04 Nov 2007 15:08 GMT | 2 |
How to debug Powershell commandlets? -- http://www.alvas.net - Audio tools for C# and VB.Net developers
|
| How to costraint a generics to be a number | 04 Nov 2007 13:39 GMT | 6 |
I want to costraint a generics T to be a number (Int32, Double, Byte etc...) but how I can do? I need beacuse I want to use arithmetic operators (+, -...).
|
| Using Shared Classes | 04 Nov 2007 12:49 GMT | 6 |
I have a web application and windows application, My web application has App_Code folder and in this folder have a Users.cs file, this file has some user management classes and routines, The problem is, when I try to use this class from windows application and
|
| Email Header | 04 Nov 2007 11:24 GMT | 2 |
Is there a way in C# to just retrieve the email header from a POP server. If so is there a short piece of code. I need to develop an application which looks at the header. If it is in a certain format in the subject line I then download it leaving all
|
| BinaryWriter, don't close stream | 04 Nov 2007 10:43 GMT | 7 |
Can I use a BinaryWriter without it closing the underlying stream? I want to save information to a MemoryStream using a BinaryWriter but I want to dispose of the BinaryWriter and keep the MemoryStream in case I wish to reload information from the MemoryStream using BinaryReader.
|
| is it true that vstudio 2008 is released? | 04 Nov 2007 08:16 GMT | 5 |
Or did I get mixed up with the CTP version release? what about the status of .net 3?
|
| C# Opportunities in Richmond, VA | 04 Nov 2007 07:32 GMT | 12 |
I am currently looking for C# developers to work contract-to-hire positions in Richmond, VA. Please email a Word copy of your resume to elizabethc@synigent.com if you are interested in finding out more about this position. Thank you.
|
| FindControl problem... | 04 Nov 2007 07:26 GMT | 3 |
I'm trying to set a Calendar Value to a control that is in the EditItem and InsertItem Templates. It's been suggested that I use the below lines... TextBox t =
|
| How can I catch all of file notifications happening all over the hard disk? | 04 Nov 2007 05:54 GMT | 4 |
Dear group, I need to know what is going on in my hard disk. When ever any file is being copied or is being deleted or is being opened I should be aware of. Please note that I want to monitor entire part of hard disk not a
|
| what is the proper to bind checkbox | 04 Nov 2007 03:04 GMT | 2 |
I tried to represent windows form checkbox as int 1 for checked otherwise 0 and bind as checkstate. That did not work. should I bind to text or whatever, or I should use something other than Int in the sql database? I tried Google so far no luck, built-in help no luck except ...
|
| Timer problem | 04 Nov 2007 02:19 GMT | 4 |
I am trying to use the timer to make a login form show after a specified interval. However, if the interval is set to a value greater than 5000 nanosecond, then it does not respond. What could be the issue here? Thanks. private void frmMain_Load(object sender, EventArgs e)
|
| Transfering structure from WebService | 03 Nov 2007 23:41 GMT | 4 |
It's well known that IDictionary collections present run-time exceptions if you attempt to serialize them across Web service boundaries. I need transfer data from this struct: private struct OnlineRecordData
|
| basic string encryption | 03 Nov 2007 22:47 GMT | 7 |
I have created some simple string encryption in C# to be able to store passwords in a database without them being stored in plain text. I have attached a encrypted passage from a book I like. Please let me know if it is really simple to crack.
|