<< < 22 23 24 25 26 27 28 29 30 31 32 > >>   Sort: Date

How can you debug failed assembly binds?
How can you debug failed assembly binds? Use the Assembly Binding Log Viewer (fuslogvw.exe) to find out the paths searched.
2014-12-19, 2773👍, 0💬

How does the XmlSerializer work? What ACL permissions does a process using it require?
How does the XmlSerializer work? What ACL permissions does a process using it require? XmlSerializer requires write permission to the system’s TEMP directory.
2014-02-21, 2754👍, 0💬

The parameter “clienttarget = downlevel” does one of the following ...
The parameter “clienttarget = downlevel” does one of the following ... The parameter “clienttarget = downlevel” does one of the following * Adds aliases for specific user agents to an internal collection of user agent aliases * Indicates the useragents level of validating the controls *...
2014-07-07, 2687👍, 0💬

What tool is used to manage the GAC?
What tool is used to manage the GAC? What tool is used to manage the GAC? * GacMgr.exe * GacSvr32.exe * GacUtil.exe * RegSvr.exe GacUtil.exe
2014-03-11, 2677👍, 0💬

A set of tables are maintained in a Dataset as ...
A set of tables are maintained in a Dataset as ... A set of tables are maintained in a Dataset as * TablesCollection object * DataTableCollection object * DataRowsCollection object * TableRowCollection object TablesCollection object
2014-07-11, 2624👍, 0💬

State True or False: A single .NET dll can contain unlimited classes: * True or * False?
State True or False: A single .NET dll can contain unlimited classes: * True or * False? True
2014-03-12, 2600👍, 0💬

Where are shared assemblies stored?
Where are shared assemblies stored? Global assembly cache.
2014-12-19, 2572👍, 0💬

Which of the following is the correct code for setting a Session timeout of 30 minutes
Which of the following is the correct code for setting a Session timeout of 30 minutes Which of the following is the correct code for setting a Session timeout of 30 minutes * Session.Timeout = 108000 * Session.Timeout = 1800 * Session.Timeout = 300 * Session.Timeout = 30 Answer1: Session.Timeout = ...
2014-06-16, 2572👍, 0💬

What is the difference between VB and VB.NET?
What is the difference between VB and VB.NET? Now VB.NET is object-oriented language. The following are some of the differences: Data Type Changes The .NET platform provides Common Type System to all the supported languages. This means that all the languages must support the same data types as enfor...
2013-10-07, 2556👍, 0💬

What is delay signing?
What is delay signing? Delay signing allows you to place a shared assembly in the GAC by signing the assembly with just the public key. This allows the assembly to be signed with the private key at a later stage, when the development process is complete and the component or assembly is ready to be d...
2014-12-31, 2520👍, 0💬

What are PDBs? Where must they be located for debugging to work?
What are PDBs? Where must they be located for debugging to work? Answer1: To debug precompiled components such as business objects and code-behind modules, you need to generate debug symbols. To do this, compile the components with the debug flags by using either Visual Studio .NET or a command line...
2014-02-18, 2508👍, 0💬

Are COM objects managed or unmanaged?
Are COM objects managed or unmanaged? Since COM objects were written before .NET, apparently they are unmanaged. Any code not written in the Microsoft .NET framework environment is UNMANAGED. So naturally COM+ is unmanaged because it is written in Visual Basic 6.
2014-12-02, 2500👍, 0💬

How do I tell the client applications that are already installed to start using this new MyApp.dll?
How do I tell the client applications that are already installed to start using this new MyApp.dll? So let’s say I have an application that uses MyApp.dll assembly, version 1.0.0.0. There is a security bug in that assembly, and I publish the patch, issuing it under name MyApp.dll 1.1.0.0. How do ...
2014-12-29, 2493👍, 0💬

What method must be overridden in a custom control?
What method must be overridden in a custom control? What method must be overridden in a custom control? * The Paint() method * The Control_Build() method * The Render() method * The default constructor The Render() method
2014-08-14, 2492👍, 0💬

How can you create a strong name for a .NET assembly?
How can you create a strong name for a .NET assembly? With the help of Strong Name tool (sn.exe).
2014-12-22, 2488👍, 0💬

How can you tell the application to look for assemblies at the locations other than its own install?
How can you tell the application to look for assemblies at the locations other than its own install? Use the directive in the XML .config file for a given application. &lt;probing privatePath=”c:\mylibs; bin\debug” /> should do the trick. Or you can add additional search paths in the Prope...
2014-12-17, 2483👍, 0💬

What does this do? gacutil /l | find /i “about”
What does this do? gacutil /l | find /i “about” Answer1: This command is used to install strong typed assembly in GAC Answer2: gacutil.exe is used to install strong typed assembly in GAC. gacutil.exe /l is used to lists the contents of the global assembly cache. |(pipe) symbol is used to filte...
2014-02-19, 2475👍, 0💬

I can’t import the COM object that I have on my machine. Did you write that object?
I can’t import the COM object that I have on my machine. Did you write that object? You can only import your own objects. If you need to use a COM component from another developer, you should obtain a Primary Interop Assembly (PIA) from whoever authored the original object. The answer to (5) is o...
2014-12-04, 2465👍, 0💬

The code used to turn off buffering is * Buffering = false...
The code used to turn off buffering is * Buffering = false... The code used to turn off buffering is * Buffering = false * OutputBuffer = false * BufferOutput = false * Buffer = Off Answer1: Buffer=true Answer2: Buffer=false
2014-03-14, 2465👍, 0💬

How many languages .NET is supporting now?
How many languages .NET is supporting now? When .NET was introduced it came with several languages. VB.NET, C#, COBOL and Perl, etc. The site DotNetLanguages.Net says 44 languages are supported.
2013-09-26, 2463👍, 0💬

What is a Strong Name?
What is a Strong Name? A strong name consists of the assembly's identity its simple text name, version number, and culture information (if provided) plus a public key and a digital signature. It is generated from an assembly file (the file that contains the assembly manifest, which in turn contains ...
2013-10-08, 2458👍, 0💬

How do you call unmanaged methods from your .NET code through PInvoke?
How do you call unmanaged methods from your .NET code through PInvoke? Supply a DllImport attribute. Declare the methods in your .NET code as static extern. Do not implement the methods as they are implemented in your unmanaged code, you’re just providing declarations for method signatures.
2014-12-08, 2448👍, 0💬

What are the XML files that are important in developing an ASP.NET application?
What are the XML files that are important in developing an ASP.NET application? The XML file necessary for the for developing an asp.net application is Web.config
2014-09-22, 2448👍, 0💬

Describe the advantages of writing a managed code application instead of unmanaged one. What’s involved in certain piece of co
Describe the advantages of writing a managed code application instead of unmanaged one. What’s involved in certain piece of code being managed? The advantages include automatic garbage collection, memory management, support for versioning and security. These advantages are provided through .NET F...
2014-11-19, 2422👍, 0💬

<< < 22 23 24 25 26 27 28 29 30 31 32 > >>   Sort: Date