GeekInterview.com
  I am new, Sign me up!
 
GeekInterview.com  >  Interview Questions  >  Microsoft  >  C#
Go To First  |  Previous Question  |  Next Question 
 C#  |  Question 53 of 436    Print  

What is the equivalent to regsvr32 and regsvr32 /u a file in .NET development?

Try using RegAsm.exe. The general syntax would be: RegAsm. A good description of RegAsm and its associated switches is located in the .NET SDK docs. Just search on "Assembly Registration Tool".


  
Total Answers and Comments: 1 Last Update: January 10, 2006   
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
January 10, 2006 09:35:00   #1  
sahu Member Since: December 2005   Contribution: 323    

RE: What is ...

ans:

regasm.exe


 
Is this answer useful? Yes | No

 Related Questions

All methods marked with the DllImport attribute must be marked as public static extern.  
Latest Answer : It works perfectly.  You can find the dialogue window by using "ALT+Tab" keyRobert  ...

C# does not support an explicit fall through for case blocks. The following code is not legal and will not compile in C#: switch(x){case 0:// do somethingcase 1:// do something in common with 0default:// 
Latest Answer : c# switch allows fall through if and only if in empty case. as long as there is a statement in the case it must  use break or go to to  jump out of the case. ...

The difference is that static read-only can be modified by the containing class, but const can never be modified and must be initialized to a compile time constant. To expand on the static read-only case 
Latest Answer : As static read-only variables must be initialized in the static constructor (static constructor cannot have parameters and it cannot be called manually), it is efficient to used const variables over static read-only variables if you know the values ...

Use a conditional attribute on the method, as shown below: class Debug{[conditional("TRACE")]public void Trace(string s){Console.WriteLine(s);}}class MyClass{public static void Main(){Debug.Trace("hello");}}In 
Latest Answer : Well, you cant add the namespace System.Diagnostics.ConditionalAttribute. Actually you need to add the namespace System.Diagnostics and capitalise "Conditional" like so:using System;using System.Diagnostics;namespace Debug{    class ...

You need to use the /target:library compiler option.  
Latest Answer : There is no Issue to make dll in C#...Go to Project and Select "Class Library" and work as you work in Usual FORM by making Classes or functions ....The only difference is that when we are making any File in DLL ,The file cannot be run in Class ...

The word checked is a keyword in C#.  
Latest Answer : Reason is checked is a keyword in C#,but if u want to keyword as an identifier use @ with it.e.g int @checked=3;This works with all the keywords,but it is recommended to avoid it. ...

What is the syntax for calling an overloaded constructor within a constructor (this() and constructorname() does not compile)?
The syntax for calling another constructor is as follows: class B{B(int i){ }}class C : B{C() : base(5) // call base constructor B(5){ }C(int i) : this() // call C(){ }public static void Main() {}}  

C# has the is operator: expr is type  
Latest Answer : EX:==============using System; class ClassA {} public class TestIs{   public static void Test (object o)    {      ClassA a = null;       if (o is ClassA)       ...

If you leave off the return type on a method declaration, the compiler thinks you are trying to declare a constructor. So if you are trying to declare a method that returns nothing, use void. The following 
Latest Answer : If your method does not have any return type then mention void before that method or return 0 ...

Strings are not null terminated in the runtime, so embedded nulls are allowed. Console.WriteLine() and all similar methods continue until the end of the string.  
Latest Answer : Console.WriteLine() stop printing when it reaches a 'Carriage Return' (denotes next line) character within a string! ...


 Sponsored Links

 
Related Articles

Learning Website Development with Django

Learning Website Development with Django Book Review Websites are usually visited because of the information they can give Even in page ranking of Google which indices website according to importance those websites that provides the most number of articles or has the greatest number of discussions o
 

PHP Oracle Web Development

PHP Oracle Web Development Data processing Security Caching XML Web Services and Ajax The book is written by Yuli Vaseliev a well known author of different web development and programming books PHP Oracle Web Development Data processing Security Caching XML Web Services and Ajax is a good starting b
 

PHP Oracle Web Development Review

PHP Oracle Web Development Data processing Security Caching XML Web Services and Ajax The book is written by Yuli Vaseliev a well known author of different web development and programming books The author is also an expert in open source technologies and SOA Service Oriented Architecture But besides
 

Attitude Development : Comparing Yourself to Others

Comparing Yourself to Others Where is Your Career Going This is a question that most professionals will ask themselves at one point or another in their lives Once you have determined what your goals in life are the next thing you will want to do is take action You can begin by doing something that m
 

Application Development in .NET

ASP NET 2 0 Tutorials Application development in NET Client Side Application Development Client applications are applications that run on the client system or the desktop of the user They are closest to the traditional windows based applications and they display forms or windows on the desktop enabl
 

Attitude Development : Practice Makes Perfect

Practice Makes Perfect Can Practicing Help Improve My Attitude You bet it does But it is not as simple as merely practicing” whatever it is that you want to get good at You have to learn how to practice the right way Indeed practicing can be used in virtually every profession as a way of
 

Use Your Assets for Attitude Development

Use Your Assets What are Assets The dictionary defines an asset as a valuable or useful thing or quality The fact of the matter is whether we are rich or poor we all have assets On the flipside of that coin we all have liabilities as well The trick is to learn how to use the former by discarding the
 

Service Oriented Design and Development

Service Oriented Design and Development SOAD Service Oriented Analysis and Design The term Service Oriented Analysis and Design  was first used in the publication Elements of Service Oriented Analysis and Design Service Oriented Analysis and Design is also covered in the publication Service
 

Attitude Development : Visualizing Success

Visualizing Success What is Visualization Visualization is a technique which you can employ to improve your attitude and thus attain success This is an activity that many successful businessmen athletes celebrities and musicians employ as a means of increasing their success even though a lot of th
 

Attitude Development

Attitude Development What do all successful people have in common When looking for a definition for success it is a good idea to take a close look at the most successful people out there What do all of them have in common If you look close enough you will see that the most successful individuals in
 

About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape