8
votes
What are the differences between Generics in C# and Java… and Templates in C++?
There are already a lot of good answers on what the differences are, so let me give a slightly different perspective and add the why.
As was already explained, the main di …
-1
votes
How do you do polymorphism in Ruby?
This is how I would write it:
class Animal
def make_noise; '' end
def sleep; puts "#{self.class.name} is sleeping." end
end
class Dog < Animal; def make_noise; 'Woof!' end …
1
vote
Anonymous Type vs Dynamic Type
You seem to be mixing three completely different, orthogonal things:
static vs. dynamic typing
manifest vs. implicit typing
named vs. anonymous …
-1
votes
In an OO language, what do you name your class that contains the Main method?
I don't put it in a class. In fact, I don't even use a method, just a snippet of code:
#!/usr/bin/env ruby
puts 'Look Ma, no class, no method!'
…
0
votes
Design Pattern: Builder
I've never thought about it this way, but LINQ (the pattern, not the syntax) is actually a builder, right?
It's a fluent interface that builds a query and can create queries in different re …
1
vote
Converting Ruby to C#
I don't know C# at all, so anything I say about C# should be taken with a grain of salt. However, I will try to explain what goes on in that piece of Ruby code.
class << Cache …
6
votes
Why use the C# class System.Random at all instead of System.Security.Cryptography.RandomNumberGenerator?
The most obvious reasons have already been mentioned, so here's a more obscure one: cryptographic PRNGs typically need to be continually be reseeded with "real" entropy. Thus, if you use a CPRNG to …
3
votes
Unit testing private code
There is really only two cases you need to consider:
the private code is called, directly or indirectly from public code and
the private code is not called from publ …
4
votes
How do I parse HTML using regular expressions in C#?
This has already been answered literally dozens of times, but it bears repeating: regular expressions can only parse regular languages, that's why they are called regular expressions. HTML is not a …
1
vote
What are first-class objects in Java and C#?
The notion of "first-class citizen" or "first-class element" in a programming language was introduced by British computer scientist …
1
vote
How to use Microsoft.Scripting.Hosting?
Microsoft.Scripting is part of the Dynamic Language Runtime. The Dynamic Language Runtime is part of .NET 4, …
5
votes
Call Ruby or Python API in C# .NET
This is one of the two things that the Dynamic Language Runtime is supposed to do: everybody thinks that the DLR is only for language implement …
3
votes
How to print 1 to 100 without any looping using C#
using IronRuby;
class Print1To100WithoutLoopsDemo
{
static void Main()
{
Ruby.CreateEngine().Execute("(1..100).each {|i| puts i}");
}
}
Hey, why not? …
