doubt in c sharp

  • Thread starter Thread starter Baskar RajaSekharan
  • Start date Start date
B

Baskar RajaSekharan

Please clarify My doubt..

1) How to find out whether the component devekopment in Csharp is in
Relase Mode or Run Mode?

2) Like Class Id in C++ , what the Unique Id for C-shap Component?
 
Baskar,
1) How to find out whether the component devekopment in Csharp is in
Relase Mode or Run Mode?

What's your definition of "release mode" vs "run mode"?

2) Like Class Id in C++ , what the Unique Id for C-shap Component?

The combination of the assembly name and the fully qualified type name
identifies a managed type. If you want it to be unique, make sure you
give your assembly a strong name.



Mattias
 
Baskar,

To find out whether or not a component is in design mode or run mode you
can use the DesignMode property on the Component class.

The closest thing to a unique id in .NET would be the type name, which
can be obtained through the FullName property on the Type instance which
represents the type of the class.

Hope this helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

how to convert this C function into C-Sharp ? 1
doubt on abstration concept 2
C# Performance 14
Doubt in C-Sharp 1
Initializing static readonly methods 10
ftp from a c sharp application 2
Doubt 3
help in c sharp 1

Back
Top