What will be the output of the C#.NET code snippet given below?
namespace IndiabixConsoleApplication
{
class Sample
{
static Sample()
{
Console.Write("Sample class ");
}
public static void Bix1()
{
Console.Write("Bix1 method ");
}
}
class MyProgram
{
static void Main(string[ ] args)
{
Sample.Bix1();
}
}
}1.Sample class Bix1 method
2.Bix1 method
3.Sample class
4.Bix1 method Sample class
Posted Date:-2021-02-24 11:05:30