Advertisement
JeCodeLeSoir

ApiNetworkStruct.cs

May 6th, 2024 (edited)
566
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. namespace ApiNetworkStruct
  2. {
  3.     public struct A { }
  4.     public struct B { }
  5.     public struct C { }
  6. }
  7.  
  8. // en use you class
  9. using ApiNetworkStruct;
  10.  
  11. // version 2
  12.  
  13. public static class ApiNetworkStruct
  14. {
  15.     public struct A { }
  16.     public struct B { }
  17.     public struct C { }
  18. }
  19.  
  20. // en use you class
  21. using static ApiNetworkStruct;
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement