Hi Geeks,

I have library which contains some methods and property written in C# 
Language ,I want to access those methods from Node.js?

Below code is my C# Library code.

class Employee{
    public int Id { get; set; }

    public string EmpName { get; set; }

    public DateTime EmpDob { get; set; }

    public Employee getEmpDetails()
    {
        Employee objEmployee = new Employee();

        objEmployee.Id = 11203256;

        objEmployee.EmpName = "John Miller";

        objEmployee.EmpDob = System.DateTime.Now;

        return objEmployee;
    }        }

So above code produced Employee.dll , Now I want use my getEmpDetails() 
from node js.

-- 
Job board: http://jobs.nodejs.org/
New group rules: 
https://gist.github.com/othiym23/9886289#file-moderation-policy-md
Old group rules: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/nodejs/73c1f866-4a7e-42c9-92e9-2b4cf1734f3d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to