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 4611590
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T01:17:18+00:00 2026-05-22T01:17:18+00:00

I have used reflector until its trial period ended I have decoded many applications

  • 0

I have used reflector until its trial period ended

I have decoded many applications successfully. And by my recent post i was able to identify it can also decode delphi.net vcl apps (d2007).

Can i decode delphi.net vcl and translate it to a c# application which can be compiled success fully using visual studio.

  • 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. Editorial Team
    Editorial Team
    2026-05-22T01:17:19+00:00Added an answer on May 22, 2026 at 1:17 am

    The answer to the question Can i decode delphi.net vcl app and translate it to a c# application which can be compiled success fully using visual studio ? is No

    This is the Why.

    When you create a vcl net application using delphi (8), 2005, 2006 or 2007, the delphi compiler create an .NET application with a lot of dependencies to internal classes which are wrappers and helpers to call the real .net classes, these classes (wrappers) was created to facilitate the creation of .net applications to the existing delphi win32 developers.

    Consider this sample.

    This a delphi .net app

    program DelphiNetConsole;
    
    {$APPTYPE CONSOLE}    
    
    uses
      SysUtils;    
    begin
      try
        Writeln('Hello From Delphi 2007.Net');
      except
        on E:Exception do
          Writeln(E.Classname, ': ', E.Message);
      end;
    end.
    

    if you translate manually this code to C#

    using System;
    using System.Text;
    
    namespace ConsoleApplication8
    {
        class Program
        {
            static void Main(string[] args)
            {
                try
                {
                    Console.WriteLine("Hello From Delphi 2007.Net");
                }
                catch (System.Exception E)
                {
                    Console.WriteLine(E.Message);
                }
            }
        }
    }
    

    But using reflector you get this for the first snippet

    public static void DelphiNetConsole()
    
    {
        System.IsConsole = true;
        try
        {
            TextOutput.Output.WriteWideString("Hello From Delphi 2007.Net", 0).WriteLn();
            System.@_IOTest();
        }
        catch (Exception exception1)
        {
            Exception exception2 = System.@ExceptObject = exception1;
            Exception E = exception1;
            TextOutput.Output.WriteWideString(TObjectHelper.ClassName(System.@GetMetaFromObject(E)), 0).WriteWideString(": ", 0).WriteWideString(E.Message, 0).WriteLn();
            System.@_IOTest();
            System.@ExceptObject = null;
        }
    }
    

    As you can see the last code call a lot of helper classes and functions (like TextOutput) which are not part of the standard .net framework, rather they are part of the Borland.Delphi.System namespace.

    Reflector can help you to translate some snippets of code but not the full application in an automated way.

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

Sidebar

Related Questions

I'm sure many readers on SO have used Lutz Roeder 's .NET reflector to
I have used NSSets many times in my apps, but I have never created
I used to think that an assembly could have only one main() method until
I have used zohmg and successfully created mapper, table in HBase and test-imported my
I have an executable that requires .NET Framework to run; I have used reflector
I have used the silverlight control in CRM 2011.It also published on form but
We have used Shibboleth to authenticate users. It works great. The issue is that
I have used some jquery components in my web site, Suddenly i'm getting an
I have used a plugin that uses prototype js, it's working fine but the
I have used this website for testing http://www.webpagetest.org and among some suggestions for optimization

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.