C# equivalent to Java resource
Is there an online resource or database that allows looking up the C# equivalent to a Java class and vice versa?
I have been porting code and have been Googling individual cl开发者_如何学Pythonasses one at a time; it gets a little tedious. 8^j
Cheers
something as simple as this: http://www.harding.edu/fmccown/java_csharp_comparison.html
or more about the libraries available on each?
1 * Google "C# api" = http://msdn.microsoft.com/en-us/library/d11h6832(v=vs.71).aspx
Rosetta Code is a nice approach, though it is more comprehensive than you're after. The goal of the site is to show the same task being done in as many languages as possible. For example, for File IO, you could search for the Java and C# versions and compare them.
精彩评论