Toggle navigation
Hot Examples
EN
EN
RU
DE
FR
ES
PT
IT
JP
ZH
KO
C#
PHP
C#
Java
Go
C++
Python
JS
TS
Search
C# (CSharp) ParamIs.NonNegative Examples
Programming Language:
C# (CSharp)
Class/Type:
ParamIs
Method/Function:
NonNegative
Examples at hotexamples.com:
1
C# (CSharp) ParamIs.NonNegative - 1 examples found
. These are the top rated real world C# (CSharp) examples of
ParamIs.NonNegative
extracted from open source projects. You can rate examples to help us improve the quality of examples.
Frequently Used Methods
Show
Hide
NotNull(30)
NotNullOrEmpty(30)
NotNullOrWhiteSpace(9)
Equal(4)
Int(3)
Positive(3)
AllOf(2)
AnyOf(2)
Empty(2)
Anything(1)
Like(1)
NonNegative(1)
Frequently Used Methods
NotNull (30)
NotNullOrEmpty (30)
NotNullOrWhiteSpace (9)
Equal (4)
Int (3)
Positive (3)
AllOf (2)
AnyOf (2)
Empty (2)
Anything (1)
Frequently Used Methods
Like (1)
NonNegative (1)
Example #1
0
Show file
File:
OptionalDateTime.cs
Project:
Pyther99/vocadb
public OptionalDateTime(int year) { ParamIs.NonNegative(() => year); Year = year; }
x