CSharp examples for System:Int32
Check Not Null
// Permission is hereby granted, free of charge, to any person obtaining a copy using System;//from w w w. j av a 2 s . c o m public class Main{ public static void CheckNotNull (string argumentName, object argumentValue) { if (argumentValue == null) throw new ArgumentNullException (argumentName); } }