ndicate which one of the following C# types can store the largest floating-point value? a. float b. decimal c. ulong d. double code example
Example: c# data types
using System;
class BoxingExample
{
static void Main()
{
int i = 123;
object o = i; // Boxing
int j = (int)o; // Unboxing
}
}