Thursday, April 14, 2011

ILSpy debugger preview

Hey,

The last couple of months I've been working on a integrated debugger for ILSpy decompiler.
You can read more here.

Have fun debugging the decompiled code!

Thursday, February 17, 2011

Reflector is going down - ILSpy is going up

Hey,

RedGate announced that Reflector no longer will not be free... No problem... We have ILSpy!

ILSpy is one of the best open source disassemblers and decompilers there is!

Try it! Tell us what you think on our forum!

Enjoy and happy coding!

Tuesday, February 15, 2011

My Fuzzy Logic paper accepted in "Journal of Control Engineering and Applied Informatics"

Today my fuzzy logic paper on creating an intelligent flight control system was accepted in "Journal of Control Engineering and Applied Informatics".

Saturday, February 12, 2011

The type or namespace '' does not exist in the class or namespace '' (are you missing an assembly reference?)

There are a number of reasons when one gets the error from the title. Searching the web for this error, there are a lot articles where some solutions are provided.
This morning I also got this error but none of the solutions that I've found were the right one.
It looks like one of the projects that my main application was referring, was build on .NET 4.0 and the main application was build on .NET 4.0 client profile. Setting both projects to use the same framework, fixed the issue.

Thursday, January 6, 2011

Create app in IIS7

using(ServerManager iisManager = new ServerManager())
{
var site = iisManager.Sites["Default Web Site"];

if (site == null)
return;

if (site.Applications["/" + applicationName] == null)
site.Applications.Add("/" + applicationName, physicalPath);

iisManager.CommitChanges();
}

Sunday, December 5, 2010

My SharpDevelop blog

Hey,

I have a SharpDevelop blog (http://community.sharpdevelop.net/blogs/marcueusebiu/) where I will post all my work regarding SharpDevelop.
Stay tunned!

Eusebiu