Anonymous Types is what you looking for. Eg –
var v = new { Amount = 108, Message = "Hello" };
Above code will create a new object with properties Amount and Message.
Anonymous Types is what you looking for. Eg –
var v = new { Amount = 108, Message = "Hello" };
Above code will create a new object with properties Amount and Message.