Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 75703
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T20:33:27+00:00 2026-05-10T20:33:27+00:00

I’ve been a Delphi (D7) developer for many sometime already, I’ve always been wondering

  • 0

I’ve been a Delphi (D7) developer for many sometime already, I’ve always been wondering about the .NET + C# stuffs. What I mean are about not the ‘Delphi for .NET’ or ‘Oxygene’ tech/plugin, but clean .NET/C#.

How much different is it from Delphi? And some other questions…

  • Is Mono/SharpDevelop (any others that I should know of?) as capable as the Non-Free Visual Studio?
  • In terms of deployment, how does it work? The Assembly + Framework + Executable?
  • The Framework (3.5 latest?) works something like the JVM for the Java world, correct? Does it take care of the supporting/making use of techs like Multi-Cores or Windows specific optimizations?
  • C# has some similarities to Object Pascal, shouldn’t be too tough to adapt, right?

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T20:33:28+00:00Added an answer on May 10, 2026 at 8:33 pm

    Re the first point: have you tried the (free) VIsual Studio Express Edition? For a lot of things, this is perfectly capable. You just don’t get as many helpers / designers, and no plug-in support (for IDE extensions).

    Re the second: excluding some nasty tricks, you can’t create a pure native executable from .NET; it relies heavily on the framework being available on the local machine. An assembly is just a package of IL, and can be contained (typically) in either a dll, or bootstrapped into an exe that loads the assemblies entry-point; but in this scenario the exe is just a simple loader plus a regular assembly.

    Actually, the CLR is more like the JVM; the ‘framework’ is really just the equiavalent of a BCL. The main MS framework+CLR certainly has some Windows specific optimizations, but other runtimes/frameworks (compact, micro, Silverlight, Mono) will have different optimizations.

    Re multi-core – you have full threading support (for doing it yourself) – but the main automated multi-core support will (hopefully) be in .NET 4.0 with the ‘parallel extensions‘ work.

    Re the last point: should be very familiar indeed. Actually, if you want to do some comparisons, ‘reflector‘ (free) can take a compiled assembly and show you the code in either C# or delphi (or a few others).

    [update re questions]

    IL = Intermediate Language; .NET doesn’t compile to native CPU instructions, but to something in-between that becomes CPU instruction at runtime (compiled ‘Just In Time’ (JIT) on a method-by-method basis). This means that the JIT compiler can optimize the same IL for the local machine. You can do this in advance using NGen.

    CLR = Common Language Runtime; essentially the VM

    BCL = Base Class Library; the set of classes shared my many apps

    Re deployment: first, install the .NET framework on the client ;-p

    After that – various options. At the simplest level, you can just copy the exe/etc onto the local machine and run. For example, I use ‘robocopy’ to push code to web-servers.

    For full local installs of a complex client app, msi is an option (and the full VS IDE will help you with this).

    For simple clients, you can use ClickOnce – which packages the app into a signed bundle that provides self-updating etc capabilities and allows you to make statements about what security you need (full trust, etc). Express Edition allows you to author ClickOnce packages. ClickOnce can even be used on locked down clients where the user can’t install apps, since the app is isolated and sand-boxed.

    Finally, you can run a .NET app off a network share, but there are some security implications: the ‘Code Access Security’ layer won’t give a network share ‘full trust’ (although there were some recent changes to this so that mapped (F: etc) shares are trusted). So you’d need to use CASPOL at each client to trust the code. ClickOnce would be easier ;-p

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 236k
  • Answers 236k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Try this: $text = preg_replace("/<object>.*?item_id([a-zA-Z0-9]+).*?<\/object/","%ITEM:$1",$text); NOTE: Untested What I did… May 13, 2026 at 6:21 am
  • Editorial Team
    Editorial Team added an answer The documentation will tell you. If you want to set… May 13, 2026 at 6:21 am
  • Editorial Team
    Editorial Team added an answer How many threads are you talking about? If you have… May 13, 2026 at 6:21 am

Related Questions

I've got a string that has curly quotes in it. I'd like to replace
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I have a French site that I want to parse, but am running into
I have text I am displaying in SIlverlight that is coming from a CMS

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.