473,378 Members | 1,639 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Anakrino

Hi friends,

Who knows something else except Anakrino http://www.saurik.com/net/exemplar/
or
Salamander http://www.remotesoft.com/salamander/
to get the source code of C#.NET exe/dll?

It's really interesting to get a compilable code instead of promises.

What's interesting in Anakrino, the IDE works good and shows me everything
correctly but the command line tool "Exemplar.exe" works very bad and the
code differs from the IDE's. Does somebody know some features or keys of
this program? I couldn't find any description.

Thanks.
Dmitri Shvetsov
ds*******@cox.net
Nov 15 '05 #1
5 3983
Hi Dmitri,

Reflector now includes the ability to decompile to C# or VB.NET

http://www.aisto.com/roeder/dotnet/

--
Rob Windsor
G6 Consulting
Toronto, Canada

"Dmitri Shvetsov" <ds*******@cox.net> wrote in message
news:gmg9b.132713$kP.63473@fed1read03...
Hi friends,

Who knows something else except Anakrino http://www.saurik.com/net/exemplar/ or
Salamander http://www.remotesoft.com/salamander/
to get the source code of C#.NET exe/dll?

It's really interesting to get a compilable code instead of promises.

What's interesting in Anakrino, the IDE works good and shows me everything
correctly but the command line tool "Exemplar.exe" works very bad and the
code differs from the IDE's. Does somebody know some features or keys of
this program? I couldn't find any description.

Thanks.
Dmitri Shvetsov
ds*******@cox.net

Nov 15 '05 #2
Hi,

Thanks a lot, but do you know how can I get a CS file to compile it after
some changes? Is it possible using this program? Or I need to walk step by
step inside IDE to look at the code without possibility to recompile it?

Thanks.

Dmitri Shvetsov
ds*******@cox.net

"Rob Windsor" <rw******@NO.MORE.SPAM.bigfoot.com> wrote in message
news:Ou**************@TK2MSFTNGP09.phx.gbl...
Hi Dmitri,

Reflector now includes the ability to decompile to C# or VB.NET

http://www.aisto.com/roeder/dotnet/

--
Rob Windsor
G6 Consulting
Toronto, Canada

"Dmitri Shvetsov" <ds*******@cox.net> wrote in message
news:gmg9b.132713$kP.63473@fed1read03...
Hi friends,

Who knows something else except Anakrino

http://www.saurik.com/net/exemplar/
or
Salamander http://www.remotesoft.com/salamander/
to get the source code of C#.NET exe/dll?

It's really interesting to get a compilable code instead of promises.

What's interesting in Anakrino, the IDE works good and shows me everything correctly but the command line tool "Exemplar.exe" works very bad and the code differs from the IDE's. Does somebody know some features or keys of
this program? I couldn't find any description.

Thanks.
Dmitri Shvetsov
ds*******@cox.net


Nov 15 '05 #3
Dmitri,

It should be pointed out that unless you wrote the code yourself (or are
a member of an organization that owns the code), you shouldn't be trying to
alter it and recompile it, as you are probably violating either an explicit
copyright or an implicit copyright (for work produced in the States), or
some other law guarded to protect intellectual property (elsewhere).

That being said, you probably won't be able to get it to compile because
the class most likely relies on other classes in the same assembly, so you
would have to extract all of the source code and recompile. Of course, if
there are other assemblies that reference that one, it certainly won't
reference your code, so you might not get the effect you desired.

If this class is part of a larger framework, then it is probably not
worth it.
--
- Nicholas Paldino [.NET/C# MVP]
- ni**************@exisconsulting.com

"Dmitri Shvetsov" <ds*******@cox.net> wrote in message
news:NJg9b.132808$kP.101435@fed1read03...
Hi,

Thanks a lot, but do you know how can I get a CS file to compile it after
some changes? Is it possible using this program? Or I need to walk step by
step inside IDE to look at the code without possibility to recompile it?

Thanks.

Dmitri Shvetsov
ds*******@cox.net

"Rob Windsor" <rw******@NO.MORE.SPAM.bigfoot.com> wrote in message
news:Ou**************@TK2MSFTNGP09.phx.gbl...
Hi Dmitri,

Reflector now includes the ability to decompile to C# or VB.NET

http://www.aisto.com/roeder/dotnet/

--
Rob Windsor
G6 Consulting
Toronto, Canada

"Dmitri Shvetsov" <ds*******@cox.net> wrote in message
news:gmg9b.132713$kP.63473@fed1read03...
Hi friends,

Who knows something else except Anakrino

http://www.saurik.com/net/exemplar/
or
Salamander http://www.remotesoft.com/salamander/
to get the source code of C#.NET exe/dll?

It's really interesting to get a compilable code instead of promises.

What's interesting in Anakrino, the IDE works good and shows me everything correctly but the command line tool "Exemplar.exe" works very bad and the code differs from the IDE's. Does somebody know some features or keys of this program? I couldn't find any description.

Thanks.
Dmitri Shvetsov
ds*******@cox.net



Nov 15 '05 #4
Hi,

Thanks for the answer. You know we had 2 purposes of these investigations.
We needed to know if somebody can decompile our code and what kind of code
he can get. And the second problem - we have a lot of code in VB6 that
should be converted to .NET. One of the possible ways to do that - to go to
VS.NET, compile and disassemble to C#. I think that we almost reached both
purposes.

Of course, if we can find the tool to convert the source codes it would be
fine, I think now that it's possible.

Regards,
Dmitri Shvetsov

"Nicholas Paldino [.NET/C# MVP]"
Dmitri,

It should be pointed out that unless you wrote the code yourself (or are a member of an organization that owns the code), you shouldn't be trying to alter it and recompile it, as you are probably violating either an explicit copyright or an implicit copyright (for work produced in the States), or
some other law guarded to protect intellectual property (elsewhere).

That being said, you probably won't be able to get it to compile because the class most likely relies on other classes in the same assembly, so you
would have to extract all of the source code and recompile. Of course, if
there are other assemblies that reference that one, it certainly won't
reference your code, so you might not get the effect you desired.

If this class is part of a larger framework, then it is probably not
worth it.
--
- Nicholas Paldino [.NET/C# MVP]
- ni**************@exisconsulting.com

"Dmitri Shvetsov" <ds*******@cox.net> wrote in message
news:NJg9b.132808$kP.101435@fed1read03...
Hi,

Thanks a lot, but do you know how can I get a CS file to compile it after
some changes? Is it possible using this program? Or I need to walk step by step inside IDE to look at the code without possibility to recompile it?

Thanks.

Dmitri Shvetsov
ds*******@cox.net

"Rob Windsor" <rw******@NO.MORE.SPAM.bigfoot.com> wrote in message
news:Ou**************@TK2MSFTNGP09.phx.gbl...
Hi Dmitri,

Reflector now includes the ability to decompile to C# or VB.NET

http://www.aisto.com/roeder/dotnet/

--
Rob Windsor
G6 Consulting
Toronto, Canada

"Dmitri Shvetsov" <ds*******@cox.net> wrote in message
news:gmg9b.132713$kP.63473@fed1read03...
> Hi friends,
>
> Who knows something else except Anakrino
http://www.saurik.com/net/exemplar/
> or
> Salamander http://www.remotesoft.com/salamander/
> to get the source code of C#.NET exe/dll?
>
> It's really interesting to get a compilable code instead of promises. >
> What's interesting in Anakrino, the IDE works good and shows me everything
> correctly but the command line tool "Exemplar.exe" works very bad
and the
> code differs from the IDE's. Does somebody know some features or

keys of > this program? I couldn't find any description.
>
> Thanks.
> Dmitri Shvetsov
> ds*******@cox.net
>
>



Nov 15 '05 #5
On Mon, 15 Sep 2003 19:21:42 -0700, "Dmitri Shvetsov"
<ds*******@cox.net> wrote:
Thanks for the answer. You know we had 2 purposes of these investigations.
We needed to know if somebody can decompile our code and what kind of code
he can get.
Pretty much the exact source code, unfortunately. Do a search for
"obfuscator" in this group or on Google, that should bring up a list
of tools that can help you make the decompiled code slightly less
readable. Decompilation is always possible with .NET, though.
And the second problem - we have a lot of code in VB6 that
should be converted to .NET. One of the possible ways to do that - to go to
VS.NET, compile and disassemble to C#. I think that we almost reached both
purposes.


When you've recompiled VB6 with VS.NET you've already converted it to
VB.NET. That's a 100% .NET language which is roughly equivalent to
C#, and C# assemblies can interoperate with VB.NET assemblies without
any further conversion. Since you're already fluent with VB I would
advise against your planned conversion to C#.
--
http://www.kynosarges.de
Nov 15 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Sky Fly | last post by:
Hi, I know that when an .NET exe is run, the CLR loads the exe (along with dependent assemblies), compiles them to native code then runs the code. Assuming the assemblies are loaded from a...
0
by: SR | last post by:
Hi What are the legal implecations of decompiling .Net FCL Classes for educational and research purposes. If im not modifying/reproducing any decompiled code and just using it for...
2
by: Ruslan | last post by:
Does somebody know where can I find information about Menu Designer? I make a component and it need to look similar to MainMenu component at design time. It is not inherited from MainMenu
75
by: Massimo | last post by:
I'm planning to develop a .NET application using C#, in order to sell it as a shareware and/or as a full package, so I'll need a good way to protect it against piracy. I know some ways to protect...
7
by: ken | last post by:
Hello All, I am hoping that this is a simple question with a simple answer. How do you convert a VB.Net project into a C#.net project? Thank You in Advance for Your Help, Ken
5
by: YangHua | last post by:
Hi, all I am looking for a decompiler for C# for personal use. Can anyone introduce some non-comercial decomplier here? Thanks in advance. Tony
4
by: Ondrej Sevecek | last post by:
Hello, are there somewhere sources for the framework class libraries? Or does MS provide only IL binaries? Ondra.
12
by: Rick Strahl [MVP] | last post by:
Does anybody know of a tool of some sort that can generate a C# interface from a COM interface? I need to pull a ton of interfaces out of an existing application and it sure would be lot nicer to...
2
by: Maellic | last post by:
Hi, I'm currently updating a website written with ASP.NET. The original programmer is overseas, there is no documentation, and files are all over the place. Here is a code snippet from one of...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.