CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of oop
C++
/*********************************************/
/* This program will ask how many students   */
/* are in the class.  Based upon your answer */
/* it will then ask what the ages are for    */
/* each student.  From the answers provided  */
/* it will round to the nearest whole number */
/* the average age for the class.            */
/*********************************************/
#include <stdio.h> // Allows printf() function
#include <math.h> // Allows the roundf function to be used.
by Wayne   May 15, 2012 @ 4:49pm
28 Views
no comments
 
C#
@foreach(var pic in Model.stfuGalleryImage.Where( "Visible" ) ) {
              <figure>
                 <img src="@pic.galleryImage" alt="@pic.galleryImageTitle" data-tags="@pic.galleryImageTags" />
                @if ( @pic.galleryImageDescription != "" ) { 
                  <figcaption class="opaque">@pic.galleryImageDescription</figcaption>
                }
              </figure>
}
@foreach(var vid in Model.stfuGalleryVideo.Where( "Visible" ) ) {
              <figure title="@vid.galleryImageTitle" data-tags="@vid.galleryImageTags">
by Jon R. Humphrey   January 31, 2012 @ 5:17am
40 Views
2 comments
 
<?php
    class class_mysql{
    
        //Инициализируем переменные
        private $mysql_host = "localhost";
        private $mysql_login = "qwerty";
        private $mysql_passwd = "123456";
        private $mysql_database;
        private $mysql_connect;
        private $sql_error;
by systemIV   June 01, 2011 @ 3:57am
Tags: mysql, php, oop
108 Views
no comments
 
C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
 
namespace Nixoncorp.LoopPerformance
{
    class Test
    {
by Jerry Nixon   February 23, 2010 @ 12:54pm
952 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate