diff options
Diffstat (limited to 'projecttemplates/RelyingPartyLogic/Utilities.cs')
-rw-r--r-- | projecttemplates/RelyingPartyLogic/Utilities.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projecttemplates/RelyingPartyLogic/Utilities.cs b/projecttemplates/RelyingPartyLogic/Utilities.cs index e61c23c..d273881 100644 --- a/projecttemplates/RelyingPartyLogic/Utilities.cs +++ b/projecttemplates/RelyingPartyLogic/Utilities.cs @@ -112,7 +112,7 @@ GO" }; if (objectContext == null) { throw new ArgumentNullException("objectContext"); } - if (String.IsNullOrEmpty(command)) { + if (string.IsNullOrEmpty(command)) { throw new ArgumentNullException("command"); } |