(T value)
| 259 | } |
| 260 | |
| 261 | [Conditional("FLAX_ASSERTIONS")] |
| 262 | public static void IsNotNull<T>(T value) |
| 263 | where T : class |
| 264 | { |
| 265 | IsNotNull(value, null); |
| 266 | } |
| 267 | |
| 268 | [Conditional("FLAX_ASSERTIONS")] |
| 269 | public static void IsNotNull<T>(T value, string message) |