using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices; namespace ConsoleApplication6 { class VCDLLTest6 { [DllImport("VCDLLTest6.dll")] public static extern int myLength(string a); [DllImport("VCDLLTest6.dll")] public static extern int myChar8Change(string a); } class Program { static void Main(string[] args) { string strbuf = "123456789"; Console.WriteLine( "myLength=" + VCDLLTest6.myLength(strbuf) ); Console.WriteLine("myChar8Change=" + VCDLLTest6.myChar8Change(strbuf) ); Console.WriteLine("strbuf=" + strbuf); } } }