Dll for converting number to word in .Net Application

I am sharing a dll to convert number to word in .net application.

Steps :-

Add reference attached dll in your application.

and write below code . . .

decimal amount = 799.00M;
NumberToWord NtW = new NumberToWord();
string result = NtW.AmtInWord(amount);

It returns "  Rupees Seven Hundred Ninety Nine Only ".

[DLL in attachment]