代码搜索:checking
找到约 6,492 项符合「checking」的源代码
代码结果 6,492
www.eeworm.com/read/205824/5016258
h chvalid.h
/*
* Summary: Unicode character range checking
* Description: this module exports interfaces for the character
* range validation APIs
*
* This file is automatically generated from the cvs
www.eeworm.com/read/205824/5016332
c xmlschemastypes.c
/*
* schemastypes.c : implementation of the XML Schema Datatypes
* definition and validity checking
*
* See Copyright for the status of this software.
*
* Daniel Veillard
www.eeworm.com/read/202265/5052954
h xmlschemastypes.h
/*
* Summary: implementation of XML Schema Datatypes
* Description: module providing the XML Schema Datatypes implementation
* both definition and validity checking
*
* Copy: Se
www.eeworm.com/read/202265/5052963
h valid.h
/*
* Summary: The DTD validation
* Description: API for the DTD handling and the validity checking
*
* Copy: See Copyright for the status of this software.
*
* Author: Daniel Veillard
*/
www.eeworm.com/read/202265/5052976
h xmlschemas.h
/*
* Summary: incomplete XML Schemas structure implementation
* Description: interface to the XML Schemas handling and schema validity
* checking, it is incomplete right now.
*
www.eeworm.com/read/202265/5052985
h chvalid.h
/*
* Summary: Unicode character range checking
* Description: this module exports interfaces for the character
* range validation APIs
*
* This file is automatically generated from the cvs
www.eeworm.com/read/286314/4039838
cs bankaccount.cs
class BankAccount
{
public void Populate(long number, decimal balance)
{
accNo = number;
accBal = balance;
accType = AccountType.Checking;
}
pu
www.eeworm.com/read/286314/4039844
cs bankaccount.cs
class BankAccount
{
public void Populate(decimal balance)
{
accNo = NextNumber();
accBal = balance;
accType = AccountType.Checking;
}
public bool W
www.eeworm.com/read/286314/4039850
cs bankaccount.cs
class BankAccount
{
public void Populate(long number, decimal balance)
{
accNo = number;
accBal = balance;
accType = AccountType.Checking;
}
pu
www.eeworm.com/read/286314/4040079
cs struct.cs
using System;
public enum AccountType {Checking, Deposit}
// TODO: Declare a Struct
class Test
{
static void Main()
{
// TODO: Test Structure
}
}