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
C#
Comments: 0

What standard types does C# use?

C# supports a very similar range of basic types to C++, including int, long, float, double, char, string, arrays, structs and classes. However, don't assume too much. The names may be familiar, but many of the details are different. For example, a lo...
Posted By:Dominic Murphy      Posted On: Oct 21

C#
Comments: 0

Does C# replace C++?

There are three options open to the Windows developer from a C++ background:

Stick with standard C++. Don't use .NET at all.
Use C++ with .NET. Microsoft supply a .NET C++ compiler that produces IL rather than machine code. (To make full use of t...
Posted By:William Bouchard      Posted On: Mar 14

.Net Framework
Comments: 0

What's new in the .NET 2.0 class library?

Here is a selection of new features in the .NET 2.0 class library:

Generic collections in the System.Collections.Generic namespace.
The System.Nullable type. (Note that C# has special syntax for this type, e.g. int? is equivalent to Nullable)
Th...
Posted By:Clint Garcia      Posted On: Oct 25

C#
Comments: 0

How do I develop C# apps?

Visual C# Express is the easiest way to get started. On Linux you can use Mono.
Posted By:Wilfred Young      Posted On: Feb 25

.Net Framework
Comments: 0

What are the new features of .NET 2.0?

Generics, anonymous methods, partial classes, iterators, property visibility (separate visibility for get and set) and static classes. See msdn.microsoft.com/.../default.aspx for more information about these features.
Posted By:Dinh Tran      Posted On: Mar 25

.Net Framework
Comments: 0

What are the new 2.0 features useful for?

Generics are useful for writing efficient type-independent code, particularly where the types might include value types. The obvious application is container classes, and the .NET 2.0 class library includes a suite of generic container classes in the...
Posted By:Ann Evans      Posted On: Jan 31

C#
Comments: 0

What standard types does C# use?

C# supports a very similar range of basic types to C++, including int, long, float, double, char, string, arrays, structs and classes. However, don't assume too much. The names may be familiar, but many of the details are different. For example, a lo...
Posted By:Dominic Murphy      Posted On: Oct 21

C#
Comments: 0

Does C# replace C++?

There are three options open to the Windows developer from a C++ background:

Stick with standard C++. Don't use .NET at all.
Use C++ with .NET. Microsoft supply a .NET C++ compiler that produces IL rather than machine code. (To make full use of t...
Posted By:William Bouchard      Posted On: Mar 14

.Net Framework
Comments: 0

What's new in the .NET 2.0 class library?

Here is a selection of new features in the .NET 2.0 class library:

Generic collections in the System.Collections.Generic namespace.
The System.Nullable type. (Note that C# has special syntax for this type, e.g. int? is equivalent to Nullable)
Th...
Posted By:Clint Garcia      Posted On: Oct 25

C#
Comments: 0

How do I develop C# apps?

Visual C# Express is the easiest way to get started. On Linux you can use Mono.
Posted By:Wilfred Young      Posted On: Feb 25

.Net Framework
Comments: 0

What are the new features of .NET 2.0?

Generics, anonymous methods, partial classes, iterators, property visibility (separate visibility for get and set) and static classes. See msdn.microsoft.com/.../default.aspx for more information about these features.
Posted By:Dinh Tran      Posted On: Mar 25

.Net Framework
Comments: 0

What are the new 2.0 features useful for?

Generics are useful for writing efficient type-independent code, particularly where the types might include value types. The obvious application is container classes, and the .NET 2.0 class library includes a suite of generic container classes in the...
Posted By:Ann Evans      Posted On: Jan 31

  44  45  46  47  48  49  50  51  52  53  54