Advertisement
uniblab

We use 1TBS in C#, asshole

May 24th, 2025
252
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.12 KB | Source Code | 1 0
  1. // HORRIBLY WRONG!
  2. public Foo Bar
  3. {
  4.     get {return myBar;}
  5. }
  6.  
  7. // CORRECT
  8. public Foo Bar {
  9.     get {
  10.         return myBar;
  11.     }
  12. }
Tags: 1TBS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement