thorpedosg

UtqVTwWs

Aug 6th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. Type exists in 2 assemblies
  2. using Vendor1 = Vendor.Namespace;
  3. using Vendor2 = OtherVendor.Namespace;
  4.  
  5. ...
  6.  
  7. Vendor1.COMMONTYPE blah = new Vendor1.COMMONTYPE();
  8. Vendor2.COMMONTYPE blah2 = new Vendor2.COMMONTYPE();
  9.  
  10. using other = sssssss.a;
  11. namespace ConsoleApplication1
  12. {
  13. public class a
  14. {
  15. public string ff { get; set; }
  16. }
  17. class Program
  18. {
  19. static void Main(string[] args)
  20. {
  21. other s = new other();
  22. a b = new a();
  23. }
  24. }
  25. }
  26. namespace sssssss
  27. {
  28.  
  29. public class a
  30. {
  31. public string ff { get; set; }
  32. }
  33. }
Add Comment
Please, Sign In to add comment