Class1.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:0k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. namespace Wrox.ProCSharp.Assemblies.AppDomains
  3. {
  4. class Class1
  5. {
  6. public Class1(int val1, int val2)
  7. {
  8. Console.WriteLine("Constructor with the values {0}, {1}" +
  9. " in domain {2} called", val1, val2,
  10. AppDomain.CurrentDomain.FriendlyName);
  11. }
  12. [STAThread]
  13. static void Main(string[] args)
  14. {
  15. Console.WriteLine("Main in domain {0} called",
  16. AppDomain.CurrentDomain.FriendlyName);
  17. }
  18. }
  19. }