mjc65

Pic

Apr 22nd, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. public struct PicData
  2.     {
  3.         public byte[] data;
  4.         public int length;
  5.         public Guid id;
  6.     }
  7.  
  8. public void post()
  9.     {
  10.         var uploaded = new PostedImage();
  11.         var newPic = new PicData();
  12.         newPic.data = uploaded.data;
  13.         newPic.length = uploaded.length;
  14.         newPic.id = Guid.NewGuid();
  15.     }
Add Comment
Please, Sign In to add comment