As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
Possible Duplicate:
Differences between C++ and C#/.Net
I am reading this C# tutorial and it says "similar to Java (75%) C++(10%)". is that true? I thought C# and C++ were the same language except for few handy abstractions which visual studio provides.
C# and C++ are completely different languages. Even saying that they are 10% similar is probably an exaggeration. The main similarity between C# and C++ is that they both inherited basic syntax and the first letter of their name from C.
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Does any one knows, when is other non-java run-time especially C# 4.0 would be available.
Earlier Antlr 3.0 versions got run-times almost for all popular programming languages.
Get the alpha release 2 of the ANTLR C# target here: http://tunnelvisionlabs.com/downloads/antlr/2013-02-27-antlr4-csharp-4.0.1-SNAPSHOT.7z
Announced in the ANTLR discussion group: https://groups.google.com/forum/#!topic/antlr-discussion/1vhJja-k6NQ
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I want to convert a perl application to c#. Is there any tools to convert perl script to c# code?
No. The difference between the class libraries would be very difficult to bridge, even if you were able to do the basic syntax.
There are perl .NET compilers I heard.
May be some is commercial, may be some is free, I don't know, but of course I guess they are not too mature.
In the same time they can be useful...
You can compile pieces of your perl code in .NET and then decompile with red gate .NET Reflector or any other good C# decompiler to obtain a C# code.
You cannot do copy and paste but it can help.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 12 years ago.
Over the last few years I have grown rather fond of python. I enjoy coding in it a lot more than in other languages. Recently, a coworker told me that he preferred C#. I am having a hard time understanding his choice. When ever I code with C# I feel like its Java but for Microsoft products only. He also added that he is very pleased with the work Microsoft has put into C#. This seems to contradict what I have been lead to believe.
Anyways, which language would you say is more expressive? Which would you use to develop an application and why? What are some of the advantages and disadvantages of using one over the other?
Thanks!
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 13 years ago.
Possible Duplicates:
What is F# being used for?
What are the benefits of using C# vs F# or F# vs c#
I have recently studied C#, WPF, a little bit of WCF and now I have read that Visual Studio 2010 will also support F#.
My question is: what kind of application is likely to need F# instead of C# or Visual Basic?
Is F# necessary to build Windows applications, which can already be written using C# and WPF?
"what kind of application need F# instead of C# or Visual Basic?" - None. It's just another way of expressing the concepts, although quite more different from both C# and VB and they differ among themselves.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
BITS, the Windows background intelligent transfer service.
Looks like there are a few C# wrappers around that manage the interop to BITS, does anybody have any opinions on the best one?
I found problems with using the Managed_BITS codeproject article and I found an even better wrapper:
http://www.codeplex.com/sharpbits
http://nuget.org/packages/SharpBITS
Less code, a lot cleaner and unlike the codeproject, it did not hide away those parts of the BITS interface that I actually need to use.
Check out the following:
http://www.codeproject.com/KB/cs/Managed_BITS.aspx
http://www.simple-talk.com/dotnet/.net-tools/using-bits-to-upload-files-with-.net/