Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# params with at least one value

Tags:

How can I have a parameter of params with at least one value?

public void Foo(params string[] s) { }  public void main() {     this.Foo(); // compile error     this.Foo(new string[0]); // compile error     this.Foo({ }); // compile error     this.Foo("foo"); // no error     this.Foo("foo1", "foo2"); // no error } 
like image 574
John Isaiah Carmona Avatar asked May 04 '12 08:05

John Isaiah Carmona


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 in C language?

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.

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

Is C language easy?

Compared to other languages—like Java, PHP, or C#—C is a relatively simple language to learn for anyone just starting to learn computer programming because of its limited number of keywords.


2 Answers

Just do:

public void Foo(string first, params string[] s) { } 
like image 93
Nick Avatar answered Sep 19 '22 18:09

Nick


You cannot specify such conditions for params at compile-time.

However, you can check this at run-time and throw an exception if your specified conditions are not met.

like image 29
logicnp Avatar answered Sep 18 '22 18:09

logicnp