Click here to Skip to main content
15,921,716 members
Home / Discussions / C#
   

C#

 
GeneralRe: AppDomain.Unload() doesn't release assemblies? Pin
S. Senthil Kumar16-Aug-05 5:34
S. Senthil Kumar16-Aug-05 5:34 
GeneralRe: AppDomain.Unload() doesn't release assemblies? Pin
EssOEss16-Aug-05 8:05
EssOEss16-Aug-05 8:05 
AnswerRe: AppDomain.Unload() doesn't release assemblies? Pin
leppie16-Aug-05 0:55
leppie16-Aug-05 0:55 
GeneralRe: AppDomain.Unload() doesn't release assemblies? Pin
EssOEss16-Aug-05 5:23
EssOEss16-Aug-05 5:23 
GeneralHELP with deserialization Pin
Max Silberztein15-Aug-05 10:31
Max Silberztein15-Aug-05 10:31 
GeneralRe: HELP with deserialization Pin
Charlie Williams15-Aug-05 12:15
Charlie Williams15-Aug-05 12:15 
GeneralRe: HELP with deserialization Pin
Max Silberztein15-Aug-05 15:27
Max Silberztein15-Aug-05 15:27 
GeneralRe: HELP with deserialization Pin
Silberztein23-Aug-05 14:24
Silberztein23-Aug-05 14:24 
Smile | :)
I finally found out the solution: because my object Nooj.Grammar contains
fields that are other objects, I need to make sure BindToType returns
each correct type (rather than just Nooj.Grammar).

public Type BindToType (string assemblyName,string typeName)
{
if (typeName == "Nooj.Grammar") return typeof (Grammar);
else if (typeName == "Nooj.GramType") return typeof (GramType);
else if (typeName == "Nooj.Graph") return typeof (Graph);
...
else return Type.GetType (typeName);
}

--Max

QuestionHow to catch Paste on Ctrl+V (RichTextBox) Pin
cbadal15-Aug-05 10:02
cbadal15-Aug-05 10:02 
AnswerRe: How to catch Paste on Ctrl+V (RichTextBox) Pin
gnjunge15-Aug-05 10:23
gnjunge15-Aug-05 10:23 
AnswerRe: How to catch Paste on Ctrl+V (RichTextBox) Pin
Mohamad Al Husseiny15-Aug-05 10:28
Mohamad Al Husseiny15-Aug-05 10:28 
GeneralRe: How to catch Paste on Ctrl+V (RichTextBox) Pin
cbadal15-Aug-05 10:41
cbadal15-Aug-05 10:41 
Questionhow can i read the pressed key from windows Pin
m.rastgar15-Aug-05 9:57
m.rastgar15-Aug-05 9:57 
AnswerRe: how can i read the pressed key from windows Pin
Mohamad Al Husseiny15-Aug-05 10:10
Mohamad Al Husseiny15-Aug-05 10:10 
GeneralRe: how can i read the pressed key from windows Pin
m.rastgar15-Aug-05 11:42
m.rastgar15-Aug-05 11:42 
QuestionHow to build a byte from a BitArray? Pin
bouli15-Aug-05 7:44
bouli15-Aug-05 7:44 
AnswerRe: How to build a byte from a BitArray? Pin
Guffa15-Aug-05 8:13
Guffa15-Aug-05 8:13 
GeneralRe: How to build a byte from a BitArray? Pin
bouli15-Aug-05 8:46
bouli15-Aug-05 8:46 
GeneralRe: How to build a byte from a BitArray? Pin
Guffa15-Aug-05 9:01
Guffa15-Aug-05 9:01 
GeneralRe: How to build a byte from a BitArray? Pin
bouli15-Aug-05 11:19
bouli15-Aug-05 11:19 
GeneralRe: How to build a byte from a BitArray? Pin
leppie15-Aug-05 10:27
leppie15-Aug-05 10:27 
QuestionHow to make ListBox multiselect Pin
zaboboa15-Aug-05 7:11
zaboboa15-Aug-05 7:11 
AnswerRe: How to make ListBox multiselect Pin
Guffa15-Aug-05 7:38
Guffa15-Aug-05 7:38 
AnswerRe: How to make ListBox multiselect Pin
Mohamad Al Husseiny15-Aug-05 7:39
Mohamad Al Husseiny15-Aug-05 7:39 
AnswerRe: How to make ListBox multiselect Pin
Mohamad Al Husseiny15-Aug-05 7:47
Mohamad Al Husseiny15-Aug-05 7:47 

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.