Sunday, 22 August 2010

source code to return a value

//source code to return a value
using System;
namespace MyCsNsp
{
public class CSTest
{
public string CSMethod()
{
return "Hello from CSharp";
}
}
}

No comments:

Post a Comment