-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to check whether an open generic type definition implements some open generic interface. Look at the sample below:
public interface IService<T> { }
public class ServiceImpl<T> : IService<T> { }
private static bool OpenGenericTypeImplementsOpenGenericInterface(
Type…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
Whenever I see programs or scripts that convert between high-level programming languages they are always labelled as converters.
"VB.NET to C# converter" on Google results in expected, useful hits.
However "VB.NET to C# compiler" on Google results in things like comparisons between the C# and VB…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
Is there one?
All the definitions I can find describe the size, complexity / variety or velocity of the data.
Wikipedia's definition is the only one I've found with an actual number
Big data sizes are a constantly moving target, as of 2012 ranging from a few dozen terabytes to many petabytes…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
I've seen a few other developers talk about binding scope in JavaScript but it has always seemed to me like this is an inaccurate phrase. The Function.prototype.call and Function.prototype.apply don't pass scope around between two methods; they change the caller of the function - two very different…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
I have an app that runs a C++ server backend and Javascript on the client. I would like to define certain strings once only, for both pieces of code. For example, I might have a CSS class "row-hover" - I want to define this class name in one place only in case I change it later.
Is there an easy…
>>> More