473,473 Members | 2,032 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Custom mscorlib.dll

Hi

I'm currently in the process of writing my own mscorlib.dll, this in order to write my own Virtual Machine. Now all may seem a bit useless, but I'd like to use C# as scripting for our game engine, since basically all needed feature are already available in C#, and hell... why think of something new, if something else is already available
Mono, dotGNU and Rotor are totally useless for me, since they are GPL or some custom microsoft license thingie, that make them useless for commercial stuff, so I started writing my own

The ECMA 335 Standardized class description XML describe a huge amount of classes that are needed in order to be ECMA 335 compliant... well, oke, I don't really need that, but I want to be able to test our code with the VC 7.1 compiler/debugger, and so I need at least a number of classes in there, since the compiler complains about classes missing if I compile with the "do not use mscorlib.dll" flag enabled
Implementing just these classes the compiler complains about results in an internal compiler error, so something is wrong

No here comes the question... What classes are REALLY REALLY needed in order to make the following application compile and work, without using the standard mscorlib.dll. ("do not use mscorlib.dll" flag enabled

namespace bl

class blee

bleep() {
static void Main(string[] args

bleep blah = new bleep()

if you have any answers, please email me at: to*@NOSPAM.mudge.nl.BLABLEEP (remove the uppercase parts)
Nov 22 '05 #1
2 3578
Hi,

Maybe this will be of help.
http://www.codeproject.com/dotnet/Do...rget=scripting

Ken
---------------------
"Tom van Dijck" <an*******@discussions.microsoft.com> wrote in message
news:29**********************************@microsof t.com...
Hi,

I'm currently in the process of writing my own mscorlib.dll, this in order to write my own Virtual Machine. Now all may seem a bit useless, but I'd
like to use C# as scripting for our game engine, since basically all needed
feature are already available in C#, and hell... why think of something new,
if something else is already available. Mono, dotGNU and Rotor are totally useless for me, since they are GPL or some custom microsoft license thingie, that make them useless for commercial
stuff, so I started writing my own.
The ECMA 335 Standardized class description XML describe a huge amount of classes that are needed in order to be ECMA 335 compliant... well, oke, I
don't really need that, but I want to be able to test our code with the VC
7.1 compiler/debugger, and so I need at least a number of classes in there,
since the compiler complains about classes missing if I compile with the "do
not use mscorlib.dll" flag enabled. Implementing just these classes the compiler complains about results in an internal compiler error, so something is wrong.
No here comes the question... What classes are REALLY REALLY needed in order to make the following application compile and work, without using the
standard mscorlib.dll. ("do not use mscorlib.dll" flag enabled)
namespace bla
{
class bleep
{
bleep() {}
}

static void Main(string[] args)
{
bleep blah = new bleep();
}
}

if you have any answers, please email me at: to*@NOSPAM.mudge.nl.BLABLEEP

(remove the uppercase parts)
Nov 22 '05 #2
Hi,

Maybe this will be of help.
http://www.codeproject.com/dotnet/Do...rget=scripting

Ken
---------------------
"Tom van Dijck" <an*******@discussions.microsoft.com> wrote in message
news:29**********************************@microsof t.com...
Hi,

I'm currently in the process of writing my own mscorlib.dll, this in order to write my own Virtual Machine. Now all may seem a bit useless, but I'd
like to use C# as scripting for our game engine, since basically all needed
feature are already available in C#, and hell... why think of something new,
if something else is already available. Mono, dotGNU and Rotor are totally useless for me, since they are GPL or some custom microsoft license thingie, that make them useless for commercial
stuff, so I started writing my own.
The ECMA 335 Standardized class description XML describe a huge amount of classes that are needed in order to be ECMA 335 compliant... well, oke, I
don't really need that, but I want to be able to test our code with the VC
7.1 compiler/debugger, and so I need at least a number of classes in there,
since the compiler complains about classes missing if I compile with the "do
not use mscorlib.dll" flag enabled. Implementing just these classes the compiler complains about results in an internal compiler error, so something is wrong.
No here comes the question... What classes are REALLY REALLY needed in order to make the following application compile and work, without using the
standard mscorlib.dll. ("do not use mscorlib.dll" flag enabled)
namespace bla
{
class bleep
{
bleep() {}
}

static void Main(string[] args)
{
bleep blah = new bleep();
}
}

if you have any answers, please email me at: to*@NOSPAM.mudge.nl.BLABLEEP

(remove the uppercase parts)
Nov 22 '05 #3

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

Similar topics

0
by: Tom van Dijck | last post by:
Hi I'm currently in the process of writing my own mscorlib.dll, this in order to write my own Virtual Machine. Now all may seem a bit useless, but I'd like to use C# as scripting for our game...
3
by: StGo | last post by:
How can i read/write file's custom attributs(like subject,author...) in C#??? Thanks :))
3
by: Laura T. | last post by:
The following code is driving me so crazy, that I'm thinking it's a "feature" or a.. ....dare I say it... a BUG. I'm using VS 2003. I've created a new value type (struct) called MyInt. MyInt has...
6
by: mccoyn | last post by:
I have a header that is included from some files that use mscorlib and some that don't use it. One of the macros in this file uses the __pin keyword. When this header is compiled with a source file...
4
by: Earl | last post by:
Created a .dll to use in multiple projects. Very simple, one class to return a purpose for a particular version. But when I added it as a reference to one of my other projects, I get a build error...
3
by: DJTN | last post by:
I'm getting the following error when I try to compile my setup project in VS 2002. I have re-installed the .net framework 1.1 and it didnt solve the problem. WARNING: Unable to find dependency...
1
by: David Herbst | last post by:
Enterprise Library Jan 2006 with Visual Studio 2005 on Windows 2000 Server sp4. My custom exception formatter fails with a "Unable to handle exception: 'LoggingExceptionHandler'." exception. ...
0
by: paulodonnell99 | last post by:
Hi, I am trying to build an installer application to run on the compact framework, I want to produce a netmodule using CSC.exe, then use AL.exe to embed resouce files and produce an exe. My...
0
by: Atul Thombre | last post by:
Hello, I am developing a custom membership provider. For that I built a prototype that uses a SQL Server 2005 database as a backend store. I implemented the class...
3
by: Mike | last post by:
Hi I have problem as folow: Caught Exception: System.Configuration.ConfigurationErrorsException: An error occurred loading a configuration file: Request for the permission of type...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.