Advertisement
wingman007

C#InTheConsolePerson

Mar 23rd, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.81 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 Person
  17.     public class Person
  18.     {
  19.         public string Name {get; set;}
  20.         public int Age {get; set;}
  21.  
  22.         public Person(string name, int age)
  23.         {
  24.             Name = name;
  25.             Age = age;
  26.         }
  27.  
  28.         public virtual void IntroduceYourSelf()
  29.         {
  30.             Console.WriteLine("My name is {0}. I am {1} years old!", Name, Age);
  31.         }
  32.     }
  33.  
  34. }
  35.  
  36.  
  37. /*
  38. http://stackoverflow.com/questions/14728422/c-sharp-importing-class-into-another-class-doesnt-work
  39. using is for namespaces only - if both classes are in the same namespace just drop the using.
  40.  
  41. You have to reference the assembly created in the first step when you compile the .exe:
  42.  
  43. csc /t:library /out:MyClass.dll MyClass.cs
  44. csc /reference:MyClass.dll /t:exe /out:MyProgram.exe MyMainClass.cs
  45. You can make things simpler if you just compile the files together:
  46.  
  47. csc /t:exe /out:MyProgram.exe MyMainClass.cs MyClass.cs
  48. or
  49.  
  50. csc /t:exe /out:MyProgram.exe *.cs
  51. EDIT: Here's how the files should look like:
  52.  
  53. MyClass.cs:
  54.  
  55. namespace MyNamespace {
  56.     public class MyClass {
  57.         void stuff() {
  58.  
  59.         }
  60.     }
  61. }
  62. MyMainClass.cs:
  63.  
  64. using System;
  65.  
  66. namespace MyNamespace {
  67.     public class MyMainClass {
  68.         static void Main() {
  69.             MyClass test = new MyClass();
  70.         }
  71.     }
  72. }
  73. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement