Cim.Eap.EAPConfig.CheckFileExist C# (CSharp) Method

CheckFileExist() public static method

public static CheckFileExist ( object value ) : void
value object
return void
        public static void CheckFileExist(object value) {
            if (!File.Exists(value as string)) throw new FileNotFoundException("相關組態檔找不到", value as string);
        }
        public static void IPAddressCheck(object value) {