what is the process for insert value of a in string.format
using System.Windows.Forms;
namespace NepaliDateConverter
{
public partial class Form2 : Form
{
static public string[] weeks = { "आईतबार", "सोमबार", "मंगलबार", "बुधबार", "बिहीबार", "शुक्रबार", "शनिबार" };
int a = (int)DateTime.Now.DayOfWeek;
**string b= string.Format("{a}", weeks);**