Advertisement
wingman007

C#InTheConsoleAthlete

Mar 23rd, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.93 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 Athlete : Person
  17.     public class Athlete : Person
  18.     {
  19.         public string Sport {get; set;}
  20.         public Athlete(string name, int age, string sport)
  21.             :base(name, age)
  22.         {
  23.             Sport = sport; 
  24.         }
  25.        
  26.         // hiding. If there is upcasting the hided method will be executed
  27.         public new void IntroduceYourSelf()
  28.         {
  29.             Console.WriteLine("I am a student");
  30.             base.IntroduceYourSelf();
  31.             Console.WriteLine("Sport= {0}", Sport);
  32.         }  
  33.     }
  34. }
  35.  
  36. /*
  37. http://stackoverflow.com/questions/14728422/c-sharp-importing-class-into-another-class-doesnt-work
  38.  
  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.  
  74. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement