pmccafferty
Programmer
Is it possible to envoke methods and procedures from an existings C# file and use them in a Web Application?
For example: Is this possible?
"test.cs"
using System;
namespace test
{
public class test()
{
string test()
{
return "Hello World";
}
}
}
Having "Hello World" displayed in a webpage after calling test() inside an HTML or other web document;
For example: Is this possible?
"test.cs"
using System;
namespace test
{
public class test()
{
string test()
{
return "Hello World";
}
}
}
Having "Hello World" displayed in a webpage after calling test() inside an HTML or other web document;