all groups > dotnet clr > july 2004 > threads for july 8 - 14, 2004
Filter by week: 1 2 3 4 5
what language did microsoft use to develop .net framework
Posted by blacknight at 7/14/2004 3:47:01 AM
what language did microsoft use to develop .net framework
and can i use c# to build APPLICATION that interact directly with the hardware
thanks... more >>
A fundamental question about CAS
Posted by jweizman NO[at]SPAM csi.com at 7/13/2004 2:29:16 AM
Hi
After delving into CAS for long days, i begin to understand its
security model.
BUT, there is still something i don't understand :
CAS will treat only .NET written program. So it will never see the
others like those written in VB6 or assembly.
Considering not all the program won't be wr... more >>
Question on Memory Allocation
Posted by John Linn at 7/12/2004 4:44:01 PM
Let's say I have this object:
public class void MyTest() {
public string str1 = [1k worth of text];
public string str2 = [1k worth of text];
public string str3 = [1k worth of text];
public string str4 = [1k worth of text];
public string str5 = [1k worth of text];
}
MyTest ... more >>
multimodule assemblies info
Posted by Ramunas Urbonas at 7/12/2004 12:13:20 PM
Hello,
Currently I'm working on a project which contains 100+ assembly files. Can
anyone point me a good info source on building multimodule assemblies, info
on bonuses and drawbacks of this approach?
regards,
Ramunas Urbonas
... more >>
cli specification vs. VS Implementation
Posted by Ben Schwehn at 7/11/2004 1:41:17 AM
Hello all
Sorry for X-posting, If there's a more appropiate group, please f'up to it.
I've looked a the binary source of several .net modules both with a hex
editor and with a parser I've written.
There are several things I've noticed and/or don't quite understand with
how the metadata ... more >>
ContextBoundObject Attribute question
Posted by Claes Rådström at 7/10/2004 11:14:16 AM
Hi!
I rewrote a Custom Attribute sample to supply tracing functionality
to a context bound class thru an attribute.
The thing is that I would like to continue nested tracing inside the class,
but since a method call, in an object, that calls another method on itself
seems not to be performe... more >>
threading Vs delegates for Async processing
Posted by rb531 at 7/9/2004 5:32:01 PM
Is it better to use threading or delegates for Async processing?
I mean in performance, or IL generation, etc.
Thanks a bunch... more >>
"Application Domain".....
Posted by James at 7/9/2004 3:38:37 PM
Is there a tool that will allow me to look at a .Net executable and list the
currently existing app domains at runtime?
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Set DllImportAttribute at run-time?
Posted by Christopher Wells at 7/9/2004 9:56:47 AM
I have a class that has methods like:
[DllImport("wfdb.dll")]
private static extern int setsampfreq(double freq);
The wfdb.dll file isn't in the current directory nor on the path ... so I
want to qualify it with the path name, for example:
[DllImport(@"c:\foo\wfdb.dll")]
Ho... more >>
64Bit .Net & WOW64
Posted by andrew lowe at 7/8/2004 5:14:23 PM
Hi,
Lets say I have a verifiable assembly which does not use P/Invoke or
COM-Interop. On a 64bit OS this will run in the 64bit .net runtime because i
assume the OS loader looks and determines its PE32+. If this assembly (via a
plugin type of framework) loads another assembly that is not verifi... more >>
ClickOnce in VS 2005 Beta 1 ?
Posted by ralphsieminsky NO[at]SPAM hotmail.com at 7/8/2004 8:09:44 AM
Has anyone gotten ClickOnce to work with VS 2005 Beta 1?
I tried the simplest of apps, Published it using VS 2005,
and am getting the following error when clicking the published
link:
"Deployment manifest requires publisher and product specified."
Indeed, the manifest contains this line, ... more >>
What is the opposite of BitConverter.ToString(byte[]) ?
Posted by grennis NO[at]SPAM gmail.com at 7/8/2004 5:49:57 AM
If I run the following code:
Byte[] bytes = System.Text.Encoding.ASCII.GetBytes("test");
return BitConverter.ToString(bytes);
I get the string "74-65-73-74" back. My question is, what is the
easiest way to convert the string back to "test"?
Can it be done without breaking the string and u... more >>
.NET + ActiveX control firing many events = continous memory leak
Posted by gary NO[at]SPAM xyris.com at 7/8/2004 5:46:34 AM
Hi,
First my conclusion (I hope someone can tell me
I'm wrong) followed by a problem description.
CONCLUSION:
When an activex control is used in any .NET application
and the control uses events to continuously pass data
to the .NET application the result is that memory is
allocated b... more >>
|