メソッドの引数として匿名オブジェクトを渡すことに問題があります。 JavaScriptのようにオブジェクトを渡したい。例:
function Test(obj) {
return obj.txt;
}
console.log(Test({ txt: "test"}));
しかし、C#では、多くの例外がスローされます。
class Test
{
public static string TestMethod(IEnumerable<dynamic> obj)
{
return obj.txt;
}
}
Console.WriteLine(Test.TestMethod(new { txt = "test" }));
例外:
あなたが望むように見えます:
class Test
{
public static string TestMethod(dynamic obj)
{
return obj.txt;
}
}
シーケンスではなく、単一の値であるかのように使用しています。本当にシーケンスが必要ですか?
これはそれを行う必要があります...
class Program
{
static void Main(string[] args)
{
var test = new { Text = "test", Slab = "slab"};
Console.WriteLine(test.Text); //outputs test
Console.WriteLine(TestMethod(test)); //outputs test
}
static string TestMethod(dynamic obj)
{
return obj.Text;
}
}
これは問題なく動作します:)
public class Program
{
private static void Main(string[] args)
{
Console.WriteLine(Test.TestMethod(new[] {new {txt = "test"}}));
Console.ReadLine();
}
}
public class Test
{
public static string TestMethod(IEnumerable<dynamic> obj)
{
return obj.Select(o => o.txt).FirstOrDefault();
}
}