Click here to Skip to main content
15,891,375 members
Home / Discussions / C#
   

C#

 
AnswerRe: What is the correspondence .Net Class? Pin
Heath Stewart17-Feb-04 20:00
protectorHeath Stewart17-Feb-04 20:00 
GeneralC# scripts to validate zip codes & strings Pin
Reed Eichner17-Feb-04 17:56
Reed Eichner17-Feb-04 17:56 
GeneralRe: C# scripts to validate zip codes & strings Pin
John Kuhn17-Feb-04 19:44
John Kuhn17-Feb-04 19:44 
GeneralRe: C# scripts to validate zip codes & strings Pin
Reed Eichner17-Feb-04 19:57
Reed Eichner17-Feb-04 19:57 
GeneralRe: C# scripts to validate zip codes & strings Pin
Heath Stewart17-Feb-04 20:04
protectorHeath Stewart17-Feb-04 20:04 
GeneralRe: C# scripts to validate zip codes & strings Pin
John Kuhn17-Feb-04 20:09
John Kuhn17-Feb-04 20:09 
QuestionHow to know how much memory my app use? Pin
god4k17-Feb-04 15:14
god4k17-Feb-04 15:14 
AnswerRe: How to know how much memory my app use? Pin
Heath Stewart17-Feb-04 19:54
protectorHeath Stewart17-Feb-04 19:54 
The memory required for Form2 will continue to increase which each instantiation. Sounds like you need to release a patch. Fortunately, .NET facilitates versioning with .NET assemblies. You can release a new version of this assembly and either use the <assemblyBinding> configuration section in the app.config file, or use a publisher policy so that older assemblies can bind against the new version.

If you want to put these assemblies in the Global Assembly Cache, they must have a strong name. This means that they must use a version number (and you'd be wise to not use automatic versioning via the asterisk character because you can quickly loose control when you need to control version numbers) and be signed, either by specifying a filename in the AssemblyKeyFileAttribute or a container name in which the private key exists, named in AssemblyKeyNameAttribute.

For more information on assembly binding redirection, see Redirecting Assembly Versions[^] in the .NET Framework SDK on MSDN Online.

For more information on publisher policies, see Creating a Publisher Policy File[^] in the .NET Framework SDK on MSDN Online.

 

Microsoft MVP, Visual C#
My Articles
GeneralIntergration with phones Pin
LanUx17-Feb-04 14:45
LanUx17-Feb-04 14:45 
GeneralRe: Intergration with phones Pin
Heath Stewart17-Feb-04 19:48
protectorHeath Stewart17-Feb-04 19:48 
GeneralCrystal reports and Sql Server Stored Procedures Pin
yetanotherchris17-Feb-04 14:06
yetanotherchris17-Feb-04 14:06 
GeneralRe: Crystal reports and Sql Server Stored Procedures Pin
Heath Stewart17-Feb-04 19:41
protectorHeath Stewart17-Feb-04 19:41 
GeneralRe: Crystal reports and Sql Server Stored Procedures Pin
yetanotherchris18-Feb-04 12:58
yetanotherchris18-Feb-04 12:58 
GeneralRe: Crystal reports and Sql Server Stored Procedures Pin
Heath Stewart19-Feb-04 3:05
protectorHeath Stewart19-Feb-04 3:05 
GeneralWeird Problem: if Interface and Remote Object are in same namespace, wsdl file couldn't display. Pin
Anonymous17-Feb-04 13:14
Anonymous17-Feb-04 13:14 
GeneralListViewSubItem Pin
Werdna17-Feb-04 13:13
Werdna17-Feb-04 13:13 
GeneralRe: ListViewSubItem Pin
Heath Stewart17-Feb-04 13:22
protectorHeath Stewart17-Feb-04 13:22 
GeneralRe: ListViewSubItem Pin
Werdna17-Feb-04 13:32
Werdna17-Feb-04 13:32 
GeneralMap a Network Drive in C# Pin
Guinness4Strength17-Feb-04 10:53
Guinness4Strength17-Feb-04 10:53 
GeneralRe: Map a Network Drive in C# Pin
Tom Larsen17-Feb-04 11:59
Tom Larsen17-Feb-04 11:59 
GeneralRe: Map a Network Drive in C# Pin
Heath Stewart17-Feb-04 12:45
protectorHeath Stewart17-Feb-04 12:45 
GeneralRe: Map a Network Drive in C# Pin
Guinness4Strength17-Feb-04 13:39
Guinness4Strength17-Feb-04 13:39 
Generalhard problem with EVENTs Pin
Snowjim17-Feb-04 10:28
Snowjim17-Feb-04 10:28 
GeneralRe: hard problem with EVENTs Pin
Heath Stewart17-Feb-04 12:53
protectorHeath Stewart17-Feb-04 12:53 
GeneralRe: hard problem with EVENTs Pin
Snowjim17-Feb-04 13:01
Snowjim17-Feb-04 13:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.