0
votes
3answers
173 views
C# testing to see if a string is an integer?
Hi, I'm just curios as to whether there is something built into either the c# language or the .net framework that tests to see if something is an integer
if (x is an int)
// Do …
2
votes
6answers
211 views
Which C++ logical operators do you use: and, or, not and the ilk or C style operators? why?
leisure/curiosity question as implied in the title.
I personally prefer the new operators as to make code more readable in my opinion.
Which ones do use yourself? What is your r …
0
votes
1answer
58 views
Discovered: Run A Video In An Image
okay i have found the way to run a video in a image.... the procedure as given below
1 - Run a video in Windows Media Player
2 - While the video running, Press Print Screen
3 - …
2
votes
6answers
99 views
How does programming languages differ between different parts of the world?
I have always wondered how programming languages are different, if they are indeed different, to other parts of the world? How do people in parts of Asia/Europe/South America use p …
2
votes
4answers
94 views
What are the origins of standard port numbers?
Wikipedia has a long list of standard port numbers for various protocols.
Does anyone know how some of these numbers were chosen?
EDIT: I'm asking how/why the original developers …
13
votes
13answers
1k views
Where did “Foo” and “Bar” come from?
I've used it, I've read examples using it, I've tried to search why people use it... but still?
Why do you use Foo and Bar when writing an example?
And specially, where did Foo a …
0
votes
1answer
84 views
the django font [closed]
Hi, does anyone know the Font name of the web framework for perfectionists with deadlines? :)
0
votes
5answers
106 views
Why can I not add a set accessor to an overriden property?
In a base class I have this property:
public virtual string Text
{
get { return text; }
}
I want to override that and return a different text, but I would also like to be a …
0
votes
4answers
275 views
Can you reverse order a string in one line with LINQ or a LAMBDA expression
Not that I would want to use this practically (for many reasons) but out of strict curiousity I would like to know if there is a way to reverse order a string using LINQ and/or LAM …
3
votes
2answers
154 views
C#: Is it possible to use expressions or functions as keys in a dictionary?
Would it work to use Expression<Func<T>> or Func<T> as keys in a dictionary? For example to cache the result of heavy calculations.
For example, changing my very …
0
votes
2answers
90 views
Where do you take mocking - immediate dependencies, or do you grow the boundaries…?
So, I'm reasonably new to both unit testing and mocking in C# and .NET; I'm using xUnit.net and Rhino Mocks respectively. I'm a convert, and I'm focussing on writing behaviour spe …
3
votes
9answers
176 views
C#: What would you name an IEnumerable class?
When reading this question I started to wonder a bit. Say you have these two:
class ProductCollection : ICollection<Product>
class ProductList : IList<Product>
What …
5
votes
3answers
305 views
Performance difference in for loop condition?
Hello all,
I have a simple question that I am posing mostly for my curiousity.
What are the differences between these two lines of code? (in C++)
for(int i = 0; i < N, N > …
0
votes
3answers
114 views
C#: Why don’t generics use the most generic type it can when we don’t specify one?
For example I now created a this tiny class:
public static class FileSystemInfoComparers<T> where T : FileSystemInfo
{
public static IEqualityComparer<T> FullName
…
0
votes
6answers
130 views
Which programming languages support states on the language-level?
UnrealScript has always impressed me, somewhat, with it its intrinsic support for states (and latent functions) by grouping/overloading functions and fields into blocks like:
stat …
