C # error message

less than 1 minute read

An error that occurred when the argument of Split was enclosed in ". When using it, specify it with single quotation marks such as data.Split (',').

Main.cs(8,31): error CS1502: The best overloaded method match for `string.Split(params char[])' has some invalid arguments
/usr/lib/mono/4.5/mscorlib.dll (Location of the symbol related to previous error)
Main.cs(8,37): error CS1503: Argument `#1' cannot convert `string' expression to type `char[]'

ʻImplicitly convert type` means “implicit type conversion”. An error that occurred when trying to assign a string type string to an int type variable.

Main.cs(8,25): error CS0029: Cannot implicitly convert type `string[]' to `int'