Пример #1
0
 static void Main(string[] args)
 {
     using SnwConnection conn = new SnwConnection("<host>", 0, "111", "username", "password", "E");
     conn.Open();
     Console.WriteLine($"KernelRelease: {conn.KernelRelease}");
     conn.Close();
     Console.ReadLine();
 }
Пример #2
0
 public SnwCode(SnwConnection connection)
 {
     _connection = connection;
     _classes    = new Dictionary <string, CodeNamespace>();
 }