all groups > dotnet clr > august 2003 > threads for august 8 - 14, 2003
Filter by week: 1 2 3 4 5
.Net Watermarking Service - ThatsMyCode
Posted by info NO[at]SPAM riis.com at 8/13/2003 12:16:52 PM
We're looking for beta testers for our free online .Net software
watermarking tool called That's My Code which you can find at
http://www.riis.com/tools.
We offer this as an alternative to .Net code obfuscation as a way of
not protecting your code but of being able to prove that someone stol... more >>
.net dll holds dependent dll's codebase info ???
Posted by Sudha at 8/12/2003 2:53:12 PM
Does a dll hold the location details of the dependent dlls??
I build a dll which references another dll (in gac) eg:
Oracle.dataaccess.dll
When i take this dll to another m/c where Oracle is installed in a different
drive(CodeBase different) it fails to run and throws error saying File or
its d... more >>
Control.Invoke & ref params
Posted by Andre Van Der Merwe at 8/12/2003 10:55:10 AM
Can Control.Invoke get the return value's from ref/out params?
For instance I can't seem to get the return value from this method
public void Bla( ref string s )
using the following code
object ostr = "in";
Invoke( new BlaInvoker(Bla), new object[]{ostr} );
However I can get the va... more >>
Observing objects fields
Posted by Rodrigo at 8/11/2003 11:38:16 AM
Hi! I need to handle a field that are into a class. I need=20
to be informed when this field variable change it value. I=20
need something like Property Set and Get. The problem is=20
that I need to do this from other class. I don=B4t known=20
previously the fields. I get the fields using Refl... more >>
.NET Framework Path
Posted by Aaron Chan at 8/9/2003 8:02:35 PM
Hello all,
Just a quick question... Is it true that the path of the .NET framework
SDK files is always under:
{windir}\Microsoft.NET\Framework\{version}
? I.e. is there anyway the user could change this path?
I'm asking this because I am currently creating an IDE for .NET
p... more >>
GC of Large Object Heap
Posted by Mark Tucker at 8/8/2003 7:02:19 PM
Are the objects (greater than 20K) on the large object heap(LOH) divided
into Gen 0, 1, and 2? I know the LOH is collected, but not compacted. Is
it only collected during a Full GC?
Mark
... more >>
% Time in GC for Dual CPU Machine
Posted by Mark Tucker at 8/8/2003 6:59:56 PM
In a sample web application running on a 2 CPU machine, I have the following
Performance Counter values:
Average % Processor Time - Total = 67%
Average % Processor Time - aspnet_wp = 109%
Average % Time in GC - aspnet_wp = 26%
I know that the second value (109) is out of 200 because there a... more >>
Is there an event associated with Assembly.Load?
Posted by hidden at 8/8/2003 6:21:28 PM
I want to get a method executed when an AppDomain loads
an assembly, but before the entry point is executed. Is there a
means to do this? An event of some sort? The closest I seem to
be able to get is to define a static constructor for a dummy class,
but I have to actually instanciate the class.... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
.NET 'Old' Resource access ?????
Posted by Nadav at 8/8/2003 11:15:06 AM
Hi,
I wonder... How one should use C# to access resource data
stored in an EXE (8086*) binary ??? ( VC6 .rc resource
data )?
Can the ResourceManager be used to extract this type of
data?
Any directions/samples/pointers will be appriciated.
Thanks in advance,
Nadav,
Sofin l.t.... more >>
__check_commonlanguageruntime_version link error
Posted by Shridhar at 8/8/2003 9:55:11 AM
I'm getting this nasty link error
error LNK2001: unresolved external symbol
__check_commonlanguageruntime_version
I'm trying convert one of my VC6.0 project to VC7 and
enable to host the CLR. I'm trying use Managed C++ and
when I turn it ON, I get this link error. I have no idea
where... more >>
|