Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# The call is ambiguous between the following methods or properties: F(double)' and 'F(decimal)' [duplicate]

This code works quite well in C# despite the fact that int can be implicitly converted to double and float:

void Main()
{
    int x = 7;
    F(x);
}
void F(double a)
{
    a.Dump("double");
}
void F(float a)
{
    a.Dump("float");
}

So, why this code won't compile? (The call is ambiguous between the following methods or properties: 'UserQuery.F(double)' and 'UserQuery.F(decimal)')

void Main()
{
    int x = 7;
    F(x);
}
void F(double a)
{
    a.Dump("double");
}
void F(decimal a)
{
    a.Dump("decimal");
}

All I did was replace the float variant of the function with a decimal variant.

like image 590
Kate Zabelova Avatar asked Apr 03 '16 12:04

Kate Zabelova


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is C full form?

Originally Answered: What is the full form of C ? C - Compiler . C is a general-purpose, high-level language that was originally developed by Dennis M. Ritchie to develop the UNIX operating system at Bell Labs. C was originally first implemented on the DEC PDP-11 computer in 1972.

How old is the letter C?

The letter c was applied by French orthographists in the 12th century to represent the sound ts in English, and this sound developed into the simpler sibilant s.

What is C language basics?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.


1 Answers

There are no implicit conversions between floating-point types and the decimal type.

If there's methods with float, double signatures there's no problem to determine a compatible method based on a minimum graduation requirements (the float method will be chosen).

There's no such rule when dealing with float-point types and decimal as there's no implicit priority between double and decimal and it must be specified explicitly.

like image 178
shadeglare Avatar answered Oct 16 '22 01:10

shadeglare