/Shared/Member Management/TradingCenterMemberListingCommon/IsNullOrEmpty.cs
# · C# · 18 lines · 12 code · 1 blank · 5 comment · 1 complexity · b4d8163dd5b5ab135d545f5dcbf2a0af MD5 · raw file
- using SpiderMaster;
-
- namespace SpiderMaster.AspNet.TradingSystem
- {
- public sealed partial class TradingCenterMemberListingCommon
- {
- /// <summary> Determines whether [is null or empty] [the specified current]. </summary>
- /// <param name="Current">The current.</param>
- /// <returns>
- /// <c>true</c> if [is null or empty] [the specified current]; otherwise, <c>false</c>.
- /// </returns>
- [ReganSchroder(8, 10, 1, 10)]
- public static bool IsNullOrEmpty(TradingCenterMemberListingCommon Current)
- {
- return (Current.IsNull() || Current.Equals(Empty));
- }
- }
- }