Logo 
Search:

c sharp Interview FAQs

Submit Interview FAQ
No Records Found!!!
Go Ahead and Post your Interview FAQ
Home » Interview FAQs » c sharpRSS Feeds
.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

What does 'managed' mean in the .NET context?

The term 'managed' is the cause of much confusion. It is used in various places within .NET, meaning slightly different things.

Managed code: The .NET framework provides several core run-time services to the programs that run within it - for examp...
Posted By:Lily Brown      Posted On: Nov 29

.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

What does 'managed' mean in the .NET context?

The term 'managed' is the cause of much confusion. It is used in various places within .NET, meaning slightly different things.

Managed code: The .NET framework provides several core run-time services to the programs that run within it - for examp...
Posted By:Lily Brown      Posted On: Nov 29

  55  56  57  58  59  60  61  62  63  64  65