Logo 
Search:

c programming Interview FAQs

Submit Interview FAQ
No Records Found!!!
Go Ahead and Post your Interview FAQ
Home » Interview FAQs » c programmingRSS Feeds
.Net Framework
Comments: 0

How does assembly versioning work?

An assembly has a version number consisting of four parts, e.g. 1.0.350.1. These are typically interpreted as Major.Minor.Build.Revision, but this is just a convention.

The CLR applies no version constraints on weakly named assemblies, so the asse...
Posted By:Joyce Edwards      Posted On: Feb 26

.Net Framework
Comments: 0

How can I develop an application that automatically updates itself from the web?

For .NET 1.x, use the Updater Application Block. For .NET 2.x, use ClickOnce.
Posted By:Adel Fischer      Posted On: Dec 20

.Net Framework
Comments: 0

What is an assembly?

An assembly is sometimes described as a logical .EXE or .DLL, and can be an application (with a main entry point) or a library. An assembly consists of one or more files (dlls, exes, html files etc), and represents a group of resources, type definiti...
Posted By:Umaiza Hashmi      Posted On: Aug 14

.Net Framework
Comments: 0

How can I produce an assembly?

The simplest way to produce an assembly is directly from a .NET compiler. For example, the following C# program:

public class CTest
{
public CTest() { System.Console.WriteLine( "Hello from CTest" ); }
}
can be compiled into...
Posted By:Barachias Levi      Posted On: Oct 17

.Net Framework
Comments: 0

What is the difference between a private assembly and a shared assembly?

The terms 'private' and 'shared' refer to how an assembly is deployed, not any intrinsic attributes of the assembly.

A private assembly is normally used by a single application, and is stored in the application's directory, or a sub-directory bene...
Posted By:Naomi Lee      Posted On: Nov 03

C#
Comments: 0

What is C#?

C# is a new language designed by Microsoft to work with the .NET framework. In their "Introduction to C#" whitepaper, Microsoft describe C# as follows:

"C# is a simple, modern, object oriented, and type-safe programming language derived from C and...
Posted By:Nicholas Wells      Posted On: Feb 21

.Net Framework
Comments: 0

How does assembly versioning work?

An assembly has a version number consisting of four parts, e.g. 1.0.350.1. These are typically interpreted as Major.Minor.Build.Revision, but this is just a convention.

The CLR applies no version constraints on weakly named assemblies, so the asse...
Posted By:Joyce Edwards      Posted On: Feb 26

.Net Framework
Comments: 0

How can I develop an application that automatically updates itself from the web?

For .NET 1.x, use the Updater Application Block. For .NET 2.x, use ClickOnce.
Posted By:Adel Fischer      Posted On: Dec 20

.Net Framework
Comments: 0

What is an assembly?

An assembly is sometimes described as a logical .EXE or .DLL, and can be an application (with a main entry point) or a library. An assembly consists of one or more files (dlls, exes, html files etc), and represents a group of resources, type definiti...
Posted By:Umaiza Hashmi      Posted On: Aug 14

.Net Framework
Comments: 0

How can I produce an assembly?

The simplest way to produce an assembly is directly from a .NET compiler. For example, the following C# program:

public class CTest
{
public CTest() { System.Console.WriteLine( "Hello from CTest" ); }
}
can be compiled into...
Posted By:Barachias Levi      Posted On: Oct 17

.Net Framework
Comments: 0

What is the difference between a private assembly and a shared assembly?

The terms 'private' and 'shared' refer to how an assembly is deployed, not any intrinsic attributes of the assembly.

A private assembly is normally used by a single application, and is stored in the application's directory, or a sub-directory bene...
Posted By:Naomi Lee      Posted On: Nov 03

C#
Comments: 0

What is C#?

C# is a new language designed by Microsoft to work with the .NET framework. In their "Introduction to C#" whitepaper, Microsoft describe C# as follows:

"C# is a simple, modern, object oriented, and type-safe programming language derived from C and...
Posted By:Nicholas Wells      Posted On: Feb 21

  55  56  57  58  59  60  61  62  63  64  65