web-dev-qa-db-ja.com

C#のJavaScriptスプレッド構文

JavaScriptのスプレッド構文 のようなC#での実装はありますか?

var arr = new []{
   "1",
   "2"//...
};

Console.WriteLine(...arr);
23
jmvtrinidad

スプレッドオプションはありません。そして、理由があります。

  1. Paramsキーワードを使用しない限り、プロパティはC#の配列ではありません
  2. Paramキーワードを使用するプロパティは、次のいずれかでなければなりません。
    1. 同じタイプを共有する
    2. 数値用のdoubleなどのキャスト可能な共有タイプがある
    3. Object []型である(オブジェクトはすべてのルート型であるため)

ただし、そうは言っても、さまざまな言語機能で同様の機能を使用できます。

あなたの例に答える:

C#

var arr = new []{
   "1",
   "2"//...
};

Console.WriteLine(string.Join(", ", arr));

指定したリンクには次の例があります。

Javascriptスプレッド

function sum(x, y, z) {
  return x + y + z;
}

const numbers = [1, 2, 3];

console.log(sum(...numbers));
// expected output: 6

console.log(sum.apply(null, numbers));

Params C#では、同じタイプ

public int Sum(params int[] values)
{
     return values.Sum(); // Using linq here shows part of why this doesn't make sense.
}

var numbers = new int[] {1,2,3};

Console.WriteLine(Sum(numbers));

C#では、異なる数値型を使用して、doubleを使用します

public int Sum(params double[] values)
{
     return values.Sum(); // Using linq here shows part of why this doesn't make sense.
}

var numbers = new double[] {1.5, 2.0, 3.0}; // Double usually doesn't have precision issues with small whole numbers

Console.WriteLine(Sum(numbers));

Reflection C#では、オブジェクトとリフレクションを使用するさまざまな数値型で、おそらくこれがあなたが求めているものに最も近いでしょう。

using System;
using System.Reflection;

namespace ReflectionExample
{
    class Program
    {
        static void Main(string[] args)
        {
            var paramSet = new object[] { 1, 2.0, 3L };
            var mi = typeof(Program).GetMethod("Sum", BindingFlags.Public | BindingFlags.Static);
            Console.WriteLine(mi.Invoke(null, paramSet));
        }

        public static int Sum(int x, double y, long z)
        {
            return x + (int)y + (int)z;
        }
    }
}
12
Rhyous

spreadに組み込まれているものを処理するためのC#には直接ビルドされたライブラリはありません

C#でその機能を取得するには、オブジェクトを反映し、アクセス修飾子によってメソッド、プロパティ、またはフィールドを取得する必要があります。

あなたは次のようなことをするでしょう:

var tempMethods = typeof(Program).GetMethods();
var tempFields = typeof(Program).GetFields();
var tempProperties = typeof(Program).GetProperties();

次に、それらを繰り返して動的オブジェクトにスローします。

using System;
using System.Collections.Generic;
using System.Dynamic;

namespace myApp
{
    public class myClass
    {
        public string myProp { get; set; }
        public string myField;
        public string myFunction()
        {
            return "";
        }
    }

    class Program
    {
        static void Main(string[] args)
        {
            var fields = typeof(myClass).GetFields();
            dynamic EO = new ExpandoObject();
            foreach (int i = 0; i < fields.Length; i++)
            {
                AddProperty(EO, "Language", "lang" + i);
                Console.Write(EO.Language);
            }
        }

        public static void AddProperty(ExpandoObject expando, string propertyName, object propertyValue)
        {
            // ExpandoObject supports IDictionary so we can extend it like this
            var expandoDict = expando as IDictionary<string, object>;
            if (expandoDict.ContainsKey(propertyName))
                expandoDict[propertyName] = propertyValue;
            else
                expandoDict.Add(propertyName, propertyValue);
        }
    }
} 

https://www.oreilly.com/learning/building-c-objects-dynamically

0
SamSO