Advertisement
Guest User

jblebg

a guest
Dec 18th, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1. static bool div(ref float result, float value)
  2.         {
  3.             if (value == 0)
  4.             {
  5.                 return false;
  6.             }
  7.             else
  8.             {
  9.                 result = result / value;
  10.                 return true;
  11.             }
  12.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement