all groups > c# > april 2008 > threads for sunday april 6
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
serialize dictionary<string, string> collection in .net3.5
Posted by Andy B at 4/6/2008 10:37:05 PM
Is it possible to serialize to xml a dictionary<string, string> object in
..net 3.5?
... more >>
Usually should we call IDbCommand.Dispose() after done with a IDbCommand?
Posted by Ryan Liu at 4/6/2008 9:45:35 PM
Hi,
Usually should we call IDbCommand.Dispose() after done with a IDbCommand?
If not, what impact to the database server?
Thanks,
Ryan
... more >>
Serialize HashTable object to an xml file?
Posted by Andy B at 4/6/2008 8:00:20 PM
Is it possible in .net 3.5 to serialize a HashTable to an xml file?
... more >>
serialize multiple properties of a class to nested xml elements?
Posted by Andy B at 4/6/2008 7:59:03 PM
How do you serialize multiple class properties to a nested xml element? For
example, I have an element called "Venue" I want to serialize part of my
class to. The "Venue" element will have attributes and a nested element
called "Address". How would I do this using a simple example?
... more >>
Handling SPAM posts
Posted by Peter Bromberg [C# MVP] at 4/6/2008 6:15:00 PM
Folks,
We *really* need to get a handle on how to eliminate the SPAM posts making
their way into this group and related group like ASP.NET. It has gotten to
the point where it just isn't any fun anymore, having to wade through this
crap to post a question or to help somebody.
If somebody... more >>
Advertising
Posted by Joe Cool at 4/6/2008 5:33:14 PM
What the FUCK is going on with all of the GODDAMN advertising on these
newsgroups?
Can't ANYONE stop it?!?!?... more >>
3 questions related to ImageList, ListView and ComboBox
Posted by Steve K. at 4/6/2008 12:34:57 PM
I have a need to display an icon that is associated with specific types of
objects I'm displaying in my UI. For example, "Sales Order", "Invoice",
etc - each of these would have a specific icon.
I have an enum that I use to identify these different document types and a
meta data object tha... more >>
c# question
Posted by Ten at 4/6/2008 12:06:32 PM
i have 5 non-static classes
Class A, B, C, D, and E
Class A creates an instance of class B. what would be a way for classes C D
E to pass data into that instance of class B.
Class A
{
B b = new B();
}
Tem
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Code protection
Posted by Johnny Jörgensen at 4/6/2008 10:01:08 AM
I've got some code contained in a component in a dll that I want to protect
against reverse engineering - but I've never done anything like that before,
so I'm wondering a few things:
1) What brand of obfuscation software provides best protection at a
reasonable cost? Have you got any recom... more >>
const variables
Posted by ata@mailinator.com at 4/6/2008 8:37:14 AM
Hi,
consider the following class:
public class MyClass
{
public const String TableName = "myTable";
public const String Relation1 = TableName + "_WhateverEntity";
}
I would like to know whether the Relation1 constant calculated every
time the class is instantiated. Is the variable ... more >>
|