19 lines
184 B
C#
19 lines
184 B
C#
|
class X {
|
||
|
|
||
|
static void f (string s)
|
||
|
{
|
||
|
s. Split ('a');
|
||
|
}
|
||
|
|
||
|
public static int Main ()
|
||
|
{
|
||
|
string s = "";
|
||
|
|
||
|
s.Split ('a');
|
||
|
s.Split ();
|
||
|
s.Split ('a', 'b', 'c');
|
||
|
return 0;
|
||
|
}
|
||
|
}
|
||
|
|