3
votes
ASP.NET MVC Without Visual Studio
Assuming you have the correct assemblies and a C# compiler you in theory can use whatever you want to edit the code and then just run the compiler by hand or using a build script. That being said i …
1
vote
Is there and Easy way to convert C# classes to PHP
It is entirely possible to write a PHP application almost entirely in an object-oriented methodology. You will have to write some procedural code to create and launch your first object but beyond t …
0
votes
Java and c# interoperability
I am a big fan of Thrift an interoperability stack from Facebook. You said they code will probably run on the same machine so it …
3
votes
8
votes
php md5 algorithm that gives same result as c#
The issue is PHP's md5() function by default returns the hex variation of the hash where C# is returning the raw byte output that must then be made text safe with base64 encoding. If y …
1
vote
How will this work? (interfaces and non virtual functions)
It does not matter that you are talking to the contract provided by a base class or interface they will all return 1 because you are talking to an instance of class B.
…
-1
votes
Infinite IEnumerable in a foreach loop
I don't think this is possible unless you write your own LINQ provider. In the example you gave you are using LINQ to Objects which will need to completely evaluate the IEnumerable before it can ap …
0
votes
ASP.NET Mvc - System.Web.Compilation.CompilationLock
I ran into this same issue when attempting to unit test a controller factory I wrote.
The issue appears to come from the ControllerTypeCache attempting to iterate through all associated ass …
