Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. using System;
  2.  
  3. class BaseArray {
  4. public static byte[] Values()
  5. {
  6. return new byte[3]{0x0, 0x2a, 0x42};
  7. }
  8. }
  9.  
  10. public class Foo {
  11. public static void Main() {
  12. byte[] arr = null;
  13.  
  14. arr = BaseArray.Values();
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement