The mscorlib tag has no wiki summary.
2
votes
1answer
24 views
Framework design - why does .net provide ObfuscateAssemblyAttribute when it does not implement obfuscation?
I was browsing some assemblies in ILSpy, and came across System.Reflection.ObfuscateAssemblyAttribute in mscorlib.
I don't understand why this attribute is included in the .net framework. I would ...
0
votes
1answer
64 views
System.OutOfMemoryException when trying to run a create table script generated by SQL Server Management studio
i've 8GB of ram, when i tried it on a 16GB machine the script runs fine, all it does is it creats 2 tables and fills them with data, about 12000 records for each table and 38 columns for the first ...
0
votes
1answer
29 views
Error: “BindingFlags” is ambiguous whenever vcclr.h is used
Trying to experiment a bit with C++ CLI, targetting .NET 4.0 (not 4.5), I'm getting a slightly annoying issue. The code below gives an IntelliSense warning in my Visual Studio 2012; it complains that ...
0
votes
2answers
62 views
localize mscorlib.dll Resources
I've opened mscorlib in ILSpy and I see in resources folder:
Name, Value
[Format_InvalidString, Input string was not in a correct format.]
Is there any way to localize this string?
(Context: ...
1
vote
0answers
196 views
CLR20r3 DirectoryNotFound in C# windows application Installer
I have developed a C# windows form application with Visual Studios 2010. it has a couple of external dependencies. It works fine when I run it from VS but fails on start up after I make an installer ...
0
votes
1answer
129 views
exception System.Reflection.TargetInvocationException errror
I m trying to run an older vb.net code but it breaks with this error (exception System.Reflection.TargetInvocationException).
Here's the tracelog :
Source="mscorlib" StackTrace:
à ...
1
vote
3answers
111 views
compile error CS0305 Using the generic type List
While csc /t:library strconcat.cs with using System.Collections.Generic; I get an error
strconcat.cs(9,17): error CS0305: Using the generic type
'System.Collections.Generic.List<T>' ...
0
votes
1answer
123 views
“Could not load file or assembly 'TypeMock.Interceptors, Version=0.0.0.0”
We have just upgraded Typemock from 6.0.2.0 to Typemock 7.3.0.0. And we now get the following error at runtime:
[System.IO.FileNotFoundException] = {"Could not load file or assembly ...
1
vote
2answers
127 views
Why Does MethodBody.GetILAsByteArray Return Different Arrays on Different Platforms?
I'm considering the instance method Object.Equals(Object). Using reflection, it is posible to get the IL for this method as a byte array, as follows:
var mi = typeof(object).GetMethod("Equals", ...
0
votes
1answer
88 views
Security Exception - mscorlib, Retrieving COM class component with CLSID failed
I have having trouble in this phase where it initialize the app.
public static void Initialise()
{
Application.ThreadException += new ...
0
votes
0answers
918 views
mscorlib.pdb not loaded [duplicate]
I'm getting the following exception while programming a C# WPF .NET 4.5 application:
C:\Windows\Microsoft.Net\assembly\GAC_64\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.pdb: Cannot find or ...
0
votes
0answers
93 views
mscorlib issues
I am having some issues with Silverlight 3 on Windows 8. I have VS 2012 installed but also have VS 2010 installed because I have some Silverlight 3 applications I cant upgrade.
Before upgrading to ...
1
vote
0answers
131 views
mscorlib replacement & native code generation
My problem is, I mainly create terminal applications (console applications) and send them to other people, run them on servers, on backup stores and more. When I create a new console app in Visual ...
0
votes
0answers
233 views
Warning thrown because mscorlib referenced twice by assembly MVC4 app
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(1578,5):
warning MSB3247: Found conflicts between different versions of the
same dependent assembly
Foo.Tests -> ...
0
votes
1answer
310 views
How does System.Text.Encoding class work?
In .NET, there is a class called System.Text.Encoding in mscorlib. But when you do System.Text.Encoding.ASCII, you can access the ASCII encoding class.
At first, I thiught this was a class in a class ...
1
vote
1answer
404 views
Can't get program to load on customers computer, keep getting error.
I'm trying to figure this out because I haven't had this issue. I am trying to load my HVAC coil selection software on my customers computer running windows XP and no matter what I try I get the same ...
32
votes
2answers
1k views
Impossible NullReferenceException?
I'm investigating an exception that a colleague just got while running an application through Visual Studio 2010:
System.NullReferenceException was unhandled by user code
Message=Object reference ...
1
vote
1answer
339 views
Will vs 2012 built dotnet 4.0 assembly run in machines where dotnet 4.5 is not installed
I know the question is a bit strange, but I am asking it because I have faced some issues with it. Let me explain it. I have visual studio RTM 2012 installed side by side with VS 2010. According to ...
-2
votes
4answers
130 views
Avoiding calls to mscorlib when comparing strings?
Is there a possible way that let me compare strings without calling the op_Equality function is mscorlib?
For example:
string s1 = "hi";
if(s1 == "bye")
{
Console.Writeline("foo");
}
Compiles to:
...
2
votes
1answer
214 views
Visual Studio mscorlib classes source code
In NetBeans using Java I can open java.lang.String class and I see that class source code. If I try to open System.String class in VisualStudio I see methods signatures only.
Is it possible to ...
1
vote
0answers
223 views
How to set /clr:nostdlib in vs 2012
I am trying to add /clr:nostdlib in my vs 2012 c# project because I want to use the System.Core of dotnet 4.0 as explained at ...
-5
votes
2answers
294 views
C# Code. Error on launching second time. File cannot be deleted. mscorlib.dll [closed]
I am new to c#. Am creating a Windows Form Application. Functionality of the application is:
Read a Microsoft Transform File and its Corresponding MSI (Windows
Installer ) file as input.
Create ...
1
vote
1answer
665 views
Mono is using mscorlib.dll 2.0 instead of 4.0 in Ubuntu with ASP.NET Web application
I'm new here.
I have searched this site for answers and I found a workaround, but I'd still like get the original problem solved. I have set the target framework to Mono/.NET 4.0 and I am using ...
0
votes
1answer
677 views
Code analysis CA0001 error for project using NSubstitute
I have a (.NET 4) test project which references (the .NET 4) NSubstitute.dll.
When I run CodeAnalysis against the project I get a number of CA0001 errors:
Running Code Analysis...
MSBUILD : ...
2
votes
2answers
481 views
Mono take mscorlib.dll 2.0 instead of 4.0
I am having a problem with an MONO application, I'm trying to compile the project (with MonoDevelop) so as to load the library run mscorlib.dll 4.0 instead of version 2.0. (I need ...
1
vote
5answers
219 views
Possible to Inspect Innards of Core C# Functionality
I was struck today, with the inclination to compare the innards of Buffer.BlockCopy and Array.CopyTo. I am curious to see if Array.CopyTo called Buffer.BlockCopy behind the scenes. There is no ...
3
votes
1answer
129 views
Where can I see operator overloads of primitive types by using ILSpy?
Just out of curiosity I was trying to find the relevant operator overloads for unary operators like +,-,* etc. for Int32 in MsCorLib.dll
I use ILSpy.
When I checked the System.Int32 struct ...
0
votes
2answers
168 views
Replace mscorlib with my own custom version
I'd like to build a project with a custom version of mscorlib. The idea is to make a "light version" of the library to use it on a device with small memory size.
Any idea ?
Thanks
1
vote
1answer
189 views
Why does GetAssemblyName mscorlib throw an exception?
Have a .NET 4 WinForms App. When I try to do the following:
GetAssemblyName(@"C:\Windows\assembly\NativeImages_v4.0.30319_64\mscorlib\e0e5fbe72e8813a135fc878ff32b4bee\mscorlib.ni.dll");
I get the ...
2
votes
1answer
1k views
LoadLibrary 193
I am creating a C++/CLI dll that will be loaded into a legacy c++ application. The legacy application does this with a traditional call to LoadLibrary. Both the application and the C++/CLI dll are ...
0
votes
1answer
198 views
MONO mscorlib.dll customize
I am embedding mono in my framework. For the security purpose I want to customize mscorlib.dll. I want to inject securityattributes in my mscorlib.dll. Is it possible to remove some feature or inject ...
1
vote
1answer
944 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
200 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 ...
2
votes
2answers
3k 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
337 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
1answer
3k 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 ...
3
votes
1answer
958 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") \
...
1
vote
2answers
1k 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
...
0
votes
1answer
1k 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
453 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
...
1
vote
2answers
732 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 ...
2
votes
2answers
2k views
Curious to mscorlib reference
I am curious as to the mscorlib reference in different project templates.
When I create a WPF project, I cannot find the mscorlib file in the reference folder. I think it is referenced by default.
...
3
votes
4answers
2k 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?
1
vote
2answers
2k 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 ...
10
votes
7answers
13k 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
347 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 ...
0
votes
1answer
1k 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
527 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:
...
2
votes
1answer
721 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 ...
7
votes
4answers
809 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: ...




