16
votes
10answers
4k views
C# String enums.
Hi,
I have the following enumerator:
public enum AuthenticationMethod
{
FORMS = 1,
WINDOWSAUTHENTICATION = 2,
SINGLESIGNON = 3
}
The problem however is that I need the word "FORMS" when I ask …
9
votes
6answers
892 views
Random Python dictionary key, weighted by values
hello,
I have a dictionary where each key had a list of variable length, eg:
d = {
'a': [1, 3, 2],
'b': [6],
'c': [0, 0]
}
Is there a clean way to get a random dictionary key, weighted by the …
7
votes
5answers
284 views
How are NULLs stored in a database ?
Hello,
I'm curious to know how NULLs are stored into a database ?
It surely depends on the database server but I would like to have an general idea about it.
First try:
Suppose that the server …
6
votes
6answers
444 views
Is string a value type or a reference type?
I just can't find a "good" explanation for this...
6
votes
2answers
1k views
Passing Reference types by value in C#
I want to pass a reference type by value to a method in C#. Is there a way to do it.
In C++, I could always rely on the copy constructor to come into play if I wanted to pass by Value. Is there any …
4
votes
5answers
235 views
Best practice in python for return value on error vs. success.
Hi,
In general, let's say you have a method like the below.
def intersect_two_lists(self, list1, list2):
if not list1:
self.trap_error("union_two_lists: list1 must not be empty.")
…
4
votes
5answers
117 views
Nullable variable types - .value member
Hello,
I was wondering - when would I want to use the .Value member on a nullable type instead of just calling the variable itself?
e.g..
bool? b = true;
why would i use b.Value to get the value …
4
votes
8answers
249 views
Is there a universally accepted value for no value?
I've seen N/A (always caps) used most often but I don't know if there is a standard. My data will be seen on Google so I would like to use the most recognized value.
3
votes
2answers
207 views
STL: Stores references or values?
Hi,
I've always been a bit confused about how STL containers (vector, list, map...) store values. Do they store references to the values I pass in, or do they copy/copy construct +store the values …
3
votes
2answers
708 views
c# How to sort a sorted list by its value column
Hi, i have a generic sorted list "results" with key = some filename and value = boolean.
I would like to sort the list by the boolean entry or value column. does anyone know how i can do this?
…
3
votes
5answers
450 views
C# - Capture incoming Argument Values in KeyValuePair Array
Hi,
I am wondering how I can fetch the incoming arguments of my method in an array. Or just retrieve the values of my arguments dynamicly.
Meaning, a call like:
MyMethod(10, "eleven");
For method:
…
3
votes
5answers
547 views
Coding practice: return by value or by reference in Matrix multiplication?
I'm writing this question with reference to this one which I wrote yesterday. After a little documentation, it seems clear to me that what I wanted to do (and what I believed to be possible) is nearly …
3
votes
34answers
835 views
What single software development tool do you think holds the most value?
Every day I realize how much I love Visual Studio for .NET development.... but, I believe that Resharper, may hold a value that surpasses Visual Studio's (I am using VS 2005 for WPF/WCF development).
…
3
votes
8answers
816 views
Is “>” (U+003E GREATER-THAN SIGN) allowed inside an html-element attribute value?
In other words may one use /<tag[^>]*>.*?<\/tag>/ regex to match the tag html element which does not contain nested tag elements?
For example (lt.html):
<!DOCTYPE HTML PUBLIC …
2
votes
1answer
37 views
Getting URL hash location, and using it in jQuery
Heya guys.
I'd like to get the value after a hash in the URL of the current page and then be able to apply this in a new function... eg.
The URL could be
www.example.com/index.html#foo
And I …
