Reputation: 69
I have transferred a C# program to my school computer, but I don't have Visual Studio and I can't download it. How do I run it on Dreamweaver? As that is the program that comes up when I run it.
Upvotes: 0
Views: 641
Reputation: 1582
Are you talking about opening and editing the source code, or do you have a compiled application? In either case Dreamweaver will be no use to you. You can edit source code in any text editor but you will need to compile it somehow. If you can't use Visual Studio have a look at Sharpdevelop - this can be run as a portable app from a flash drive.
Upvotes: 0
Reputation: 1436
You don't. DreamWeaver is not for compiling C# console applications. It can be used for developing ASP.NET pages, which is why it could open a C# file.
Upvotes: 3