Advertisement
wingman007

C#InTheConsoleProgram

Mar 23rd, 2016
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.14 KB | None | 0 0
  1. // All these files were created with simple notepad in the console.
  2. // type: notepad Program.cs and type the program
  3. // set Path=%Path%;C:\WINDOWS\Microsoft.NET\Framework\v3.5
  4. // echo %Path%
  5. // 1. use to compile with other files (everythign in one assembly): csc /t:exe /out:Program.exe *.cs
  6.  
  7. // 2. or create a library dll and use reference
  8. // 2.1. csc /t:library /out:People.dll Person.cs Student.cs Athlete.cs
  9. // make all classes public othervise they are internal
  10. // 2.2. csc /reference:People.dll /t:exe /out:ProgramRef.exe Program.cs
  11.  
  12. using System;
  13.  
  14. namespace Stoyan
  15. {
  16.     class Program
  17.     {
  18.         static void Main()
  19.         {
  20.             Console.WriteLine("Hello world!");
  21.  
  22.             Person person1 = new Person("Stoyan", 52);
  23.             person1.IntroduceYourSelf();
  24.  
  25.             Person student1 = new Student("Kircho", 25, "dasda432s");
  26.             student1.IntroduceYourSelf();
  27.  
  28.             Person athlete1 = new Athlete("Krisi", 24, "Box");
  29.             athlete1.IntroduceYourSelf();
  30.         }
  31.     }
  32.  
  33. /*
  34.     class Person
  35.     {
  36.         public string Name {get; set;}
  37.         public int Age {get; set;}
  38.  
  39.         public Person(string name, int age)
  40.         {
  41.             Name = name;
  42.             Age = age;
  43.         }
  44.  
  45.         public void IntroduceYourSelf()
  46.         {
  47.             Console.WriteLine("My name is {0}. I am {1} years old!", Name, Age);
  48.         }
  49.     }
  50.  
  51. */
  52. }
  53.  
  54. /*
  55.  
  56. http://stackoverflow.com/questions/14728422/c-sharp-importing-class-into-another-class-doesnt-work
  57. using is for namespaces only - if both classes are in the same namespace just drop the using.
  58.  
  59. You have to reference the assembly created in the first step when you compile the .exe:
  60.  
  61. csc /t:library /out:MyClass.dll MyClass.cs
  62. csc /reference:MyClass.dll /t:exe /out:MyProgram.exe MyMainClass.cs
  63. You can make things simpler if you just compile the files together:
  64.  
  65. csc /t:exe /out:MyProgram.exe MyMainClass.cs MyClass.cs
  66. or
  67.  
  68. csc /t:exe /out:MyProgram.exe *.cs
  69. EDIT: Here's how the files should look like:
  70.  
  71. MyClass.cs:
  72.  
  73. namespace MyNamespace {
  74.     public class MyClass {
  75.         void stuff() {
  76.  
  77.         }
  78.     }
  79. }
  80. MyMainClass.cs:
  81.  
  82. using System;
  83.  
  84. namespace MyNamespace {
  85.     public class MyMainClass {
  86.         static void Main() {
  87.             MyClass test = new MyClass();
  88.         }
  89.     }
  90. }
  91. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement