Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
2k views

MSBUILD / csc: Cleanest way of handling x64 mscorlib warning 1607

I'm trying to use VS08SP1's default project system to invoke a C# compile in explicit x64 mode (as distinct from AnyCpu). When I explicitly mark a module as x64, I get a: warning CS1607: Assembly ...
6
votes
2answers
1k views

Getting types in mscorlib 2.0.5.0 (aka Silverlight mscorlib) via reflection on?

I am trying to add Silverlight support to my favorite programming langauge Nemerle. Nemerle , on compilation procedure, loads all types via reflection mainly in 2 steps 1-) Uses Assembly.LoadFrom ...
5
votes
4answers
526 views

How to create a custom .NET base class library (BCL) aka mscorlib replacement?

Does anybody know how to make a custom BCL work with the stock CLR? How to discover existing the most essential ties between CLR and BCL and reuse them? Here is what I have so far: ...
5
votes
3answers
30k views

“Exception has been thrown by the target of an invocation” error (mscorlib)

I have a website developed in ASP.Net 2.0 that is throwing the error "Exception has been thrown by the target of an invocation" in the production environment. It was not throwing this error in ...
3
votes
2answers
586 views

Using system types in XAML as resources

I have encountered a situation where it would be very useful to specify a floating point value directly in XAML and use it as a resource for several of my UI pieces. After searching around I found a ...
2
votes
1answer
162 views

How do I convert a .tlb file to headers and implementation files?

I'm trying to convert mscorlib.tlb. It normally used in C++ like this: #import "mscorlib.tlb" raw_interfaces_only \ high_property_prefixes("_get","_put","_putref") \ ...
2
votes
2answers
317 views

Curious to mscorlib reference

I am curious to the mscorlib reference in different project template. While I create a WPF project, we cannot find the mscorlib in the reference folder. I think it is referenced by default. While ...
2
votes
4answers
378 views

Is mscorlib.dll a CLR?

If it's not which I almost sure in, then what's the role of mscorlib.dll and where CLR is situated?
2
votes
3answers
2k views

Visual Studio 2010: Could not resolve mscorlib for target framework '.NETFramework,Version=v4.0'

I believe this is a problem that many people are running into, how ever i simply haven't found any answer that solves my problem. We are currently migrating all our solutions from 2005 to 2010 ...
2
votes
1answer
176 views

Monotouch Cannot implicitly convert type System.Collections.Generic.Stack to same type

I am using a generic Stack type in monotouch (namespace System.Collections.Generic). In a separate nunit project, that is referencing only the assemblies from the monotouch package, I am extending my ...
2
votes
3answers
250 views

C# compiler: /nostdlib option

How is this possible not to include stdlib (mscorlib.dll) to my C# application when compiling it? As far as I know, all classes inherit System.Object class, which is defined in mscorlib.dll. What is ...
1
vote
2answers
457 views

Debugging mscorlib in .Net 4.0

I'm getting the following exception from System.IO.Path.CheckInvalidPathChars() in mscorlib: [ArgumentException: Illegal characters in path.] System.IO.Path.CheckInvalidPathChars(String ...
1
vote
2answers
237 views

monotouch 'Func' delegate?

I'm trying to compile some code in MonoTouch but I'm getting an error: 'type or namespace name 'Func' could not be found' According to MSDN the delegate 'Func' is found in System and specifically the ...
1
vote
2answers
453 views

Logic Ideas - Building a URL Shortener Service with C# and WCF

I need some ideas how to implement a URL Shortener Service with WCF along with sql server as database. I will handle my url shortening logic with WCF. this project will handle creating short aliases ...
1
vote
1answer
284 views

My project references 3 different versions of mscorlib.dll

I noticed that one of my projects references 3 different versions of mscorlib: 1.0.5000.0 2.0.0.0 4.0.0.0 This post about "mscorlib.dll & System.dll" helped me understand what mscorlib is ...
1
vote
4answers
228 views

Can .NET VM (mscorlib) be called from native Win32 program to execute IL/other internal compiled code format?

Old question: I have an .exe (PE) with IL (.NET) code in it. When it is started, a mscorlib.dll (.NET framework) function is called to start IL code. Can I extract .NET code segment and append it to ...
1
vote
1answer
112 views

Howto take a glimpse into mscorlib?

I want to read data into RSAParameters structure ( RSAParameters ) and did check twice, that the data is correct. But still, I get an error "invalid data" exception for this: bei ...
1
vote
3answers
636 views

Determine Project References to mscorlib

Hey folks, I've got an ASP.NET web site project that for some reason is insisting on referencing both mscorlib 1.0.5 and mscorlib 2.0, and I can't figure out why. I've analyzed all the referenced ...
1
vote
2answers
119 views

How can i add a method to mscorelib

I want to add some methods to mscorlib. For example: string abc; abc.IsNumeric() i hope could explain my question.
0
votes
1answer
119 views

How can I fix a missing mscorelib.dll error that occurs when trying to run a Mono for Android app?

In MonoDevelop when compiling and running an app developed for Android against the simulator, the app compiles then crashes immediately in the simulator with the following application output... ...
0
votes
1answer
31 views

Unable to find file 'normnfc.nlp' of multi-file assembly 'mscorlib.dll'

I'm getting this error when building a setup project for an outlook 2007 addin from Visual Studio 2010. There is nothing complicated to the setup project, just using the standard mechanism. I know ...
0
votes
2answers
336 views

Mono return error: mono mscorlib.dll was not found

I've developed a mono gtk 2.10 application with monodevelop 2.4. But, when i try to launch the .exe outside my develop machine (about 5 virtual machine) i get ever: mono mscorlib.dll was not ...
0
votes
2answers
89 views

.NET mscorlib.dll and Kernel32.dll relation

As far as I understand it, applications that want input/output functionalities must speak to the Kernel32.dll which in turns sends the request on to the kernel itself. In .NET however, the console ...
0
votes
0answers
137 views

Adding multiple MoledType attributes (for mscorlib) in AssemblyInfo.cs causes exception

I have a class that does multiple interactions with System.IO classes that I've moled. However, I can only seem to use ONE of these in my test project. The problem is that when I add MULTIPLE ...
0
votes
1answer
395 views

A first chance exception occurred… and I don't know why

Whenever I try to debug my Windows Phone 7 C# app, I get the following message in the Output window: A first chance exception of type 'System.OverflowException' occurred in mscorlib.dll A first ...
0
votes
1answer
500 views

mscorlib - value cannot be null - parameter name: value

I have a VB.net application that has been built for awhile. I recently added a barcode in active reports 6 to one of the reports. everything works fine on my machine as well as others, but a select ...
0
votes
0answers
165 views

mscorlib.dll error “Illegal characters in path”

I have created a media player application and created a setup for it. When I open a song in the application it shows a message box with the following error Illegal characters in path mscorlib ...
0
votes
1answer
469 views

Using a .NET COM DLL in C++ Builder 4 --> Ambiguity between Strings and System::Strings

I've created a .NET COM DLL that I need to use in my C++ Builder 4 project. I'm able to import the DLL using the Import Type Library functionality (in fact I import the TLB file that comes with the ...
0
votes
1answer
216 views

IKVM.NET: ikvmstub chokes on mscorelib version issue

I found quite a few Google hits on this issue, but couldn't find a solution. When I try to convert a .NET-Interface to a Java stub using ikvmstub.exe I get the following error: ...
0
votes
2answers
273 views

Type from mscorlib not found

There is something I cannot understand. I can't read the type reference: Assembly mscorlib = Assembly.Load("mscorlib"); // it DOES exist, returns type reference: ...
0
votes
0answers
725 views

vb.net A first chance exception of type 'System.Runtime.InteropServices.COMException' occurred in mscorlib.dll

I just installed Visual Basic 2010 Express. I created a simple console application: Module Module1 Sub Main() Dim i As Integer i = 0 End Sub End Module I'm getting the ...
0
votes
1answer
213 views

custom mscorlib.dll without native code

Is it possible to build custom mscorlib.dll without any use of native code (pinvoke allowed :-)? I've tried a little experiment this weekend to see how hard it would be to do it and had following ...
0
votes
1answer
469 views

FindAll in a list of custom objects

Well, I got an object called Mamamia and inside of it has some string properties. I created a list of this object and populated it with 150 items. I'm trying to use List.FindAll but I reaaally don't ...
0
votes
2answers
552 views

Is LoadRunner 9.1 support WPF?

I have POC test to clearify is LoadRunner support WPF or not? Now it can run POC thought business but it have error with some type that locate in mscorlib.dll. I want to know how can I add reference ...