13.07.2015 Views

C# Language Specification - Willy .Net

C# Language Specification - Willy .Net

C# Language Specification - Willy .Net

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Chapter 18 Structs}public static DBInt operator %(DBInt x, DBInt y) {return x.defined && y.defined? x.value % y.value: Null;}public static DBBool operator ==(DBInt x, DBInt y) {return x.defined && y.defined? x.value == y.value: DBBool.Null;}public static DBBool operator !=(DBInt x, DBInt y) {return x.defined && y.defined? x.value != y.value: DBBool.Null;}public static DBBool operator >(DBInt x, DBInt y) {return x.defined && y.defined? x.value > y.value: DBBool.Null;}public static DBBool operator =(DBInt x, DBInt y) {return x.defined && y.defined? x.value >= y.value: DBBool.Null;}public static DBBool operator

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!