私はこのクラス ファイルをSMSHelper.csと呼んでいます。最初に知りたかったのは、私の書いた構造が正しいか間違っているかです (私のクラス ファイル名も SMSHelper.cs であり、私の最初のクラスも SMSHelper であり、コードで確認できます)。
基本的に、同じファイルに3つのクラスがあります。ファイル名と同じ名前のクラスが 1 つあります。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Text;
using System.Text.RegularExpressions;
namespace SMSBase.SMSFunction
{
public class SMSHelper : DotNetNuke.Entities.Modules.PortalModuleBase
{
// Some Code here
// Return Something here
}
public class Validator
{
public bool IsValidate(string Item)
{
// Some Code Here Not return anything
}
public class HuntingDate
{
//Implementation & Constructor here.. Return Something
}
}
}