Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.56 KB | None | 0 0
  1. [Program.cs]
  2.  
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7.  
  8. namespace TestConsole
  9. {
  10.     public class Program
  11.     {
  12.         public static string TestString = "Im a test!";
  13.         static void Main(string[] args)
  14.         {
  15.             Console.WriteLine(TestString);
  16.             Console.ReadLine();
  17.         }
  18.     }
  19. }
  20.  
  21.  
  22. [SFTP.cs]
  23.  
  24. using System;
  25. using System.Collections.Generic;
  26. using System.Linq;
  27. using System.Text;
  28.  
  29. namespace TestConsole
  30. {
  31.     class SFTP
  32.     {
  33.        //Hier geht kein TestString
  34.     }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement