<< < 145 146 147 148 149 150 151 152 153 154 155 > >>   Sort: Date

What is "Common Type System" (CTS)?
What is "Common Type System" (CTS)? CTS defines all of the basic types that can be used in the .NET Framework and the operations performed on those type. All this time we have been talking about language interoperability, and .NET Class Framework. None of this is possible without all the language sh...
2013-10-29, 1765👍, 0💬

How ASP .NET different from ASP?
How ASP .NET different from ASP? Scripting is separated from the HTML, Code is compiled as a DLL, these DLLs can be executed on the server.
2013-09-27, 1763👍, 0💬

Bitwise OR operator in C# is ...
Bitwise OR operator in C# is ... Bitwise OR operator in C# is * OR * || * | * XOR Answer1: || Answer2: |
2014-03-24, 1762👍, 0💬

Why is it hard to call this function: sub y { "because" }
Why is it hard to call this function: sub y { "because" } Because y is a kind of quoting operator. The y/// operator is the sed-savvy synonym for tr///. That means y(3) would be like tr(), which would be looking for a second string, as in tr/a-z/A-Z/, tr(a-z)(A-Z), or tr[a-z][A-Z].
2013-09-05, 1762👍, 0💬

Creating a Key Pair?
Creating a Key Pair? You can create a key pair using the Strong Name tool (Sn.exe). Key pair files usually have an .snk extension. To create a key pair At the command prompt, type the following command: sn k In this command, file name is the name of the output file containing the key pair. The follo...
2013-10-24, 1757👍, 0💬

How can I print numbers with commas separating the thousands? What about currency formatted numbers?
How can I print numbers with commas separating the thousands? What about currency formatted numbers? The functions in &lt;locale.h> begin to provide some support for these operations, but there is no standard C function for doing either task. (In Standard C, the only thing printf does in respons...
2015-11-02, 1753👍, 0💬

Explain how Viewstate is being formed and how it’s stored on client.
Explain how Viewstate is being formed and how it’s stored on client. The type of ViewState is System.Web.UI.StateBag, which is a dictionary that stores name/value pairs. ViewState is persisted to a string variable by the ASP.NET page framework and sent to the client and back as a hidden variable....
2014-01-03, 1753👍, 0💬

What are the advantages and drawbacks of using ADO.NET?
What are the advantages and drawbacks of using ADO.NET? Pros ==== ADO.NET is rich with plenty of features that are bound to impress even the most skeptical of programmers. If this weren’t the case, Microsoft wouldn’t even be able to get anyone to use the Beta. What we’ve done here is come ...
2013-12-13, 1752👍, 0💬

How do SQL Server 2000 and XML linked? What is SQL Server agent?
How do SQL Server 2000 and XML linked? What is SQL Server agent? Every Request or the Response to or from SQL Server is converted into XML format. Its purpose is to ease the implementation of tasks for the DBA, with its full-function scheduling engine, which allows you to schedule your own jobs and ...
2014-11-17, 1751👍, 0💬

Return a null pointer or a pointer to 0 bytes? .....
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes? The ANSI/ISO Standard says that it may do either; the behavior is implementation-defined ortable code must either take care not to call malloc(0), or be prepared for the possibility of a null return.
2016-04-21, 1747👍, 0💬

Suppose I call a COM object from a .NET applicaiton, but COM object throws an error. What happens on the .NET end?
Suppose I call a COM object from a .NET applicaiton, but COM object throws an error. What happens on the .NET end? COM methods report errors by returning HRESULTs; .NET methods report them by throwing exceptions. The runtime handles the transition between the two. Each exception class in the .NET Fr...
2014-12-15, 1744👍, 0💬

What is smart navigation?
What is smart navigation? The cursor position is maintained when the page gets refreshed due to the server side validation and the page gets refreshed.
2013-09-30, 1744👍, 0💬

What is Delegation?
What is Delegation? A delegate acts like a strongly type function pointer. Delegates can invoke the methods that they reference without making explicit calls to those methods. Delegate is an entity that is entrusted with the task of representation, assign or passing on information. In code sense, it...
2013-11-19, 1742👍, 0💬

What is the difference between ADO and ADO.NET?
What is the difference between ADO and ADO.NET? ADO uses Recordsets and cursors to access and modify data. Because of its inherent design, Recordset can impact performance on the server side by tying up valuable resources. In addition, COM marshalling - an expensive data conversion process - is need...
2013-10-07, 1741👍, 0💬

What is the difference between an EXE and a DLL?
What is the difference between an EXE and a DLL? An EXE can run independently, whereas DLL will run within an EXE. DLL is an in-process file and EXE is an out-process file
2014-02-17, 1740👍, 0💬

What is Rational Suite?
I found your website in a Google search, after having visited another link in that search, IBM, which had an entire website devoted to Rational Suite. Essentially, all I wanted to know was who the vendor/developer of this software was and what the software did and hopefully get some detailed descrip...
2019-07-20, 1737👍, 0💬

What is CLR?
What is CLR? Answer 1: CLR(Common Language Runtime) is the main resource of .Net Framework. it is collection of services like garbage collector, exception handler, jit compilers etc. with the CLR cross language integration is possible. Answer 2: The .NET Framework provides a runtime environment whic...
2013-12-18, 1737👍, 0💬

What is "Common Language Specification" (CLS)?
What is "Common Language Specification" (CLS)? CLS is the collection of the rules and constraints that every language (that seeks to achieve .NET compatibility) must follow. It is a subsection of CTS and it specifies how it shares and extends one another libraries.
2013-10-30, 1735👍, 0💬

Observations between VB.NET and VC#.NET?
Observations between VB.NET and VC#.NET? Choosing a programming language depends on your language experience and the scope of the application you are building. While small applications are often created using only one language, it is not uncommon to develop large applications using multiple language...
2013-10-03, 1734👍, 0💬

What type of code (server or client) is found in a Code-Behind class?
What type of code (server or client) is found in a Code-Behind class? C#
2014-01-16, 1733👍, 0💬

What is the output for the below mentioned compilation command>csc /addmodule:A.Exe B.Cs
What is the output for the below mentioned compilation command>csc /addmodule:A.Exe B.Cs What is the output for the below mentioned compilation command>csc /addmodule:A.Exe B.Cs * A.exe * B.exe * A.dll * B.dll B.exe
2014-08-29, 1731👍, 0💬

Why should I use the -w argument with my Perl programs?
Why should I use the -w argument with my Perl programs? Many Perl developers use the -w option of the interpreter, especially during the development stages of an application. This warning option turns on many warning messages that can help you understand and debug your applications. To use this opti...
2013-08-28, 1731👍, 0💬

How can you automatically generate interface for the remotable object in .NET with Microsoft tools?
How can you automatically generate interface for the remotable object in .NET with Microsoft tools? Use the Soapsuds tool.
2013-11-18, 1730👍, 0💬

How many classes can a single.NET DLL contain?
How many classes can a single.NET DLL contain? Answer1: As many Answer2: One or more
2014-09-04, 1729👍, 0💬

<< < 145 146 147 148 149 150 151 152 153 154 155 > >>   Sort: Date