سلام
من کد زیر را نوشته ام
using System;
using System.Linq;namespace ConsoleApp2
{
class Program
{
static void Main(string[] args)
{
var t=new test();
Console.WriteLine(t.list1().Length);
Console.ReadKey();
}
}public class test
{
public Array list1()
{
var str = new string[] { "a", "b", "c", "d", "e", "f" };
return str.ToArray();
}
}
}
برچسب:
نویسنده: محمد رضا جوادیان