1 | using System; |
Monday, June 30, 2014
Tutorial for Beginners 16 - Constructor and Destructors in C#
Sunday, June 29, 2014
Tutorial for Beginners 15 - Introduction to C# Classes and Objects
1 | using System; |
------------------------------------------------------------------------------
Searches related to Introduction to C# Classes and Objects
classes and objects in c# net
Introduction to C# classes
Introduction to Classes, Objects, Methods and Strings
Searches related to C# Classes
c# classes get set
c# classes online
c# classes and objects
c# classes vs structs
c# classes and methods
c# classes from xsd
c# classes properties
c# classes to represent keys in windows registry
A Basic Introduction of Class for Beginners
Basic Introduction to Classes and Objects
Introduction to Objects and Classes in C#
Introduction to C# Programming with Microsoft .NET
c# classes and objects tutorials
classes and objects in c# pdf
classes and objects in c# ppt
By:
Unknown
On 9:53 AM
C# Tutorial for Beginners 14 - Method Overloading in C#
1 | using System; |
-----------------------------------------------------------
Searches related to method overloading in c#
method overriding in c#
method overloading in c# msdn
c# method overloading tutorial
method overloading in c# codeproject
why we use method overloading in c#
method overloading in c# with different return type
difference between method overriding and method overloading in c#
signature method overloading in c#
Visual C# .NET Classes and Objects: Method Overloading
By:
Unknown
On 9:08 AM
How To Compress Video Files Up to 5 Times less Their Size Without Losing...
----------------------------------------------------------------
How to make video sizes smaller but KEEP QUALITY
How To Compress Video Files Less Than 5 Times Their
How To Compress Videos 10x There Normal Size
how to compress video files while keeping high quality
Tutorial: How to compress video files but keep the quality
How To Compress Video Files Less Than 5 Times Their size
Searches related to How To Compress Video Files Less
how to compress video files to smaller size
how to compress a video file in compressor
how to compress video files without losing quality
how to compress video files for email
how to compress video files online
how to compress video files using winrar
how to compress video files in mac
how to compress video files in windows 7
How To Compress A Video File
How To Compress Video
How to compress a video file by shrinking to smaller size
How to compress large video files without losing quality
By:
Unknown
On 4:39 AM
Saturday, June 28, 2014
C# Tutorial for Beginners 13 - Passing Reference , Output and params Pa...
Passing Reference Parameter
using System;
namespace MyProject.Examples
{
class ExampleOne
{
public static void Main()
{
int y = 0;
MyFunc(ref y);
Console.WriteLine(y);
Console.ReadKey();
}
public static void MyFunc(ref int x)
{
x = 10;
}
}
}
Passing Output Parameter
using System;
namespace MyProject.Examples
{
class ExampleOne
{
public static void Main()
{
int a=45,b=67;
int sum = 0;
int product = 0;
MyCalc(a, b, out sum, out product);
Console.WriteLine("Sum = {0} and Product ={1}", sum,product);
Console.ReadKey();
}
public static void MyCalc(int x, int y, out int sum, out int prod)
{
sum = x + y;
prod = x * y;
}
}
}
Passing params Parameter
using System;
namespace MyProject.Examples
{
class ExampleOne
{
public static void Main()
{
string[] myArray = new string[4];
myArray[0] = "name1";
myArray[1] = "name2";
myArray[2] = "name3";
myArray[3] = "name4";
ArrayMethod();
//or
ArrayMethod(myArray);
//or
ArrayMethod("n1","n2","n3");
Console.ReadKey();
}
public static void ArrayMethod(params string[] names)
{
foreach(string name in names)
{
Console.WriteLine(name);
}
Console.WriteLine("Array Size = {0}", names.Length);
}
}
}
------------------------------------------------------------------
Searches related to method output parameters and return in c#
c# method return 2 variables
c# - How to pass a single object[] to a params object[]
C# Passing arguments by default is ByRef instead of ByVal
Searches related to pass by params parameters in c#
c# pass variable number of arguments
c# pass arguments by reference
c# pass arguments
c# pass arguments to main
c# timer pass arguments
c# pass arguments to thread
pass arguments to exe c#
c# pass arguments to process
How are parameters passed in C#
C# Parameter Passing, Ref and Out
c# method return multiple variables
c# stored procedure output parameters
return output parameter stored procedure c#
c# call stored procedure with output parameters
c# function output parameter
Passing Parameters
Passing Objects By Reference or Value in C#
By:
Unknown
On 4:12 PM
C# Tutorial for Beginners 12 - Method Passing Parameters and Return
using System;
namespace MyProject.Examples
{
class ExampleOne
{
public static void Main()
{
int num1 = 0, num2 = 0;
//Accepting Values from users
Console.Write("Enter first number\t\t");
num1 = Convert.ToInt32(Console.ReadLine());
Console.Write("\n\nEnter second number\t\t");
num2 = Convert.ToInt32(Console.ReadLine());
ExampleOne eOne=new ExampleOne();
eOne.sum(num1, num2);
Console.ReadKey();
}
public int sum(int no1,int no2)
{
int add = no1 + no2;
return add;
//
}
}
}
------------------------------------
Passing Parameters C# Programming
C# Passing Parameters by Reference
How are parameters passed in C#?
ref (C# Reference)
Passing Reference-Type Parameters
Method Parameters (C# Reference)
Searches related to method parameters and return in c#
c# return multiple parameters
c# optional method parameters
c# method parameters array
c# method parameters optional
c# thread method with parameters
c# invoke method with parameters
c# get method parameters
c# default method parameters
By:
Unknown
On 2:53 PM
C# Tutorial for Beginners 11 - Introduction to C# Methods
using System;
namespace MyProject.Examples
{
class ExampleOne
{
public static void Main()
{
//ExampleOne eOne=new ExampleOne();
//eOne.sum();
ExampleOne.sum();
Console.ReadKey();
}
public static void sum()
{
int no1 = 364, no2 = 234;
int add = no1 + no2;
Console.WriteLine("Addition\t\t{0}", add);
}
}
}
-----------------------------------------------
Searches related to introduction to method in c#
c# process tutorial
c# function definition
c# extension methods tutorial
c# anonymous methods tutorial
c# lambda function tutorial
c sharp method
Introduction to the Methods of a Class
Introduction to Classes, Objects, Methods
Searches related to method in c#
abstract method in c#
finalize method in c#
dispose method in c#
anonymous method in c#
virtual method in c#
split method in c#
tostring method in c#
main method in c#
By:
Unknown
On 2:42 PM
Friday, June 27, 2014
Gmail Scheduled Send Email
Someone recently asked for the ability to schedule send an email. It was for a link to a class feedback form and ideally they'd like to be able to send it near the end of the class.
We looked at Boomerang, which had issues with authenticating with the York domain, and broke the CSS of Gmail slightly. We tried mx Hero, a Chrome app but after a tip off from a colleague and reading the reviews and discovering it at times didn't send the email, or used http rather than https etc we thought it might be better to look into making our own solution.
Apps Script to the rescue!
I wanted something that was really simple, and easily editable to do what you want.
I made an Apps Script to check your Gmail Drafts folder. If there's a message whose subject begins with a date, like this, it sends it ...
[27/06/2014] Hello, this is a message from the future!
We looked at Boomerang, which had issues with authenticating with the York domain, and broke the CSS of Gmail slightly. We tried mx Hero, a Chrome app but after a tip off from a colleague and reading the reviews and discovering it at times didn't send the email, or used http rather than https etc we thought it might be better to look into making our own solution.
Apps Script to the rescue!
I wanted something that was really simple, and easily editable to do what you want.
I made an Apps Script to check your Gmail Drafts folder. If there's a message whose subject begins with a date, like this, it sends it ...
[27/06/2014] Hello, this is a message from the future!
How to install it...
1. Go to the Apps Script here and choose the menu, File > Make a Copy. You will want to change the admin_email to your email address (line 32) so that you get a BCC copy of any mail sent out. I have set the emails to come from noReply. You can also change that in line 82.
2. Now, to authorise the script to run, click the Run button and then click OK. This is Google making sure you want this code to be able to be run.
3. From the menu Resources > "Current project's triggers" and create a Trigger that will run the check_drafts() function every 5 minutes or so. See below....
4. Now you are ready to go. All you now need to do is create draft emails that have title with a date EXACTLY in the format above... All you then have to do is close the email... and wait. It might not send at exactly the time you specify, depending on how often your Trigger is set to run, but it'll be close.
Every time the script runs, it looks for messages that have a date in square brackets. It makes a copy, BCC-ing in the email you specified ( this is important because otherwise it doesn't keep a copy in your Sent folder... you need a copy to make sure it has indeed been sent ).
The Script creates a label called "Scheduled Gmail Sent" and moves sent drafts to the bin ( unfortunately, Apps Script won't let me send the mail so it appears in the Sent tray or delete it outright ). Maybe you can work out how this bit works.
I couldn't get inline images to work, but attachments work fine.
Remember your Google Gmail quota is 500 a day, but a message with 300 people BCC'd in counts only as one message.
By:
Unknown
On 2:03 AM
Thursday, June 26, 2014
C# Tutorial for Beginners 10 - For and Foreach Loop in C#
using System;
namespace MyProject.Examples
{
class ExampleOne
{
static void Main()
{
string[] arr = new string[6]; // declaring array
//Storing value in array element
arr[0] = "Steven";
arr[1] = "Clark";
arr[2] = "Mark";
arr[3] = "Thompson";
arr[4] = "John";
arr[5] = "Ram";
foreach (string name in arr)
{
Console.WriteLine("Hello " + name);
}
for (int a = 0; a < 6; a++)
{
Console.WriteLine("value of a: {0}", arr[a]);
}
Console.ReadKey();
}
}
}
---------------------------------------------------------
Searches related to foreach loop in c#
foreach loop in c# for datatable
foreach, in (C# Reference)
C# Foreach Loop Examples
FOREACH Vs. FOR (C#)
How do foreach loops work in C#?
How do I jump out of a foreach loop in C#?
c# - In .NET, which loop runs faster, 'for' or 'foreach'?
Loops - The complete C# Tutorial
C# foreach loop - C#
use foreach loop c#
for loop in c#
write foreach loop in c#
foreach loop in c# for list
foreach loop in c# for dataset
how to break foreach loop in c#
each loop c
Searches related to for loop in c#
for loop in c# example
syntax of for loop in c#
using for loop in c#
for loop in c sharp
exit for loop in c#
nested for loop in c#
for loop in c# windows application
foreach loop in c#
Searches related to foreach loop in c#
foreach loop in c# for datatable
use foreach loop c#
for loop in c#
write foreach loop in c#
foreach loop in c# for list
foreach loop in c# for dataset
how to break foreach loop in c#
each loop c
By:
Unknown
On 3:27 PM
C# Tutorial for Beginners 9 - C# Do While Loop
using System;
namespace MyProject.Examples
{
class ExampleOne
{
static void Main()
{
Console.Write("Please Enter a Number ");
int no = int.Parse(Console.ReadLine());
int count=0;
int count1 = 0;
while (count < no)
{
Console.Write("While Number : {0} \n", count);
count++;
}
do{
Console.Write("Do while Number : {0} \n", count1);
count1++;
} while (count1 < no);
Console.ReadKey();
}
}
}
------------------------------------------------
How to use C# while loop
while (C# Reference)
C# While Loop Examples
Visual C# .NET - Do loops and While Loops
Searches related to c# while loop
c# while loop continue
c# while loop exit
c# do while loop
c# while loop datatable
c# while loop timer
c# while loop multiple conditions
c# while loop timeout
c# while loop break
Loops - The complete C# Tutorial
C# While Loops
How to use C# while loop
By:
Unknown
On 3:15 PM
Wednesday, June 25, 2014
C# Tutorial for Beginners 7 - The switch statement (C#)
using System;
namespace MyProject.Examples
{
class ExampleOne
{
static void Main()
{
Console.Write("Please Enter Students Marks ");
int marks = int.Parse(Console.ReadLine());
switch (marks)
{
case 90:
case 60:
case 30:
Console.Write("marks entered {0}",marks);
break;
default:
Console.Write("Please Enter Valid Vluee");
break;
}
Console.ReadKey();
}
}
}
------------------------------------------------
Searches related to c# switch
c# switch string
How to use C# switch case statements
c# switch enum
c# switch case range
c# switch multiple case
C# Switch Statements: Case and Goto
c# switch fall through
c# switch case multiple conditions
c# switch case default
c# switch case enum
By:
Unknown
On 2:48 PM
Monday, June 23, 2014
C# Tutorial for Beginners 6 - C# Arrays
using System;
namespace MyProject.Examples
{
class ExampleOne
{
static void Main()
{
string[] myArray = new string[4];
myArray[0] = "3";
myArray[1] = "34";
myArray[2] = "37";
myArray[3] = "65";
Console.Write(myArray[4]);
Console.ReadKey();
}
}
}
---------------------------------------------------
Searches related to c# array
Single-Dimensional Array
c# array class
c# array of objects
c# multidimensional array
c# array initialization
c# array to string
c# array contains
c# array of arrays
c# array indexof
By:
Unknown
On 3:21 PM
Sunday, June 22, 2014
C# Tutorial for Beginners 5 - If-Statement with Comparison Operators and...
1 | using System; |
-----------------------------------------------
Searches related to c# if statement
c# if statement shorthand
c# if statement multiple conditions
c# if statement string
c# if statement one line
c# if statement or operator
c# if statement not equal
nested if statement c#
c# assignment in if statement
Searches related to c# Comparison Operators
c# comparison operators enum
relational operators
equality comparison
operators equality
c# logical operator
c# string comparison operators
c# override comparison operator
Searches related to c# Logical Operator
c# logical operator precedence
c# logical operator short circuit
c# boolean operators
c# logical xor operator
.net & operator
c# not operator
visual c# operators
c# short circuit
c# logical operators precedence
By:
Unknown
On 2:22 PM
C# Tutorial for Beginners 4 - Arithmetic Operators and Simple Calculator
1 | using System; |
--------------------------------------------
Searches related to arithmetic operators in c#
c# math operations
C# Operators
C# Programming/Operators
C# Program to Perform all Basic Arithmetic Operations
.net arithmetic operators
c# operator list
c# operator =
c# operater
c#.net or operator
comparison operator in c#
c# operato
By:
Unknown
On 1:49 PM
C# Tutorial for Beginners 1 - Input and Output to Console
1 | using System; |
-------------------------------------------------------------------------
Searches related to C# Input and Output to Console
c# console application input output
c# console get input
c# console output to file
Beginner: C# input output program issues
Console Input Output - C# Fundamentals
c# console output color
c# view console output
c# file input output
By:
Unknown
On 1:50 AM
Saturday, June 21, 2014
C# Tutorial for Beginners 1 - Introduction and Creating First C# Program
1 | using System; |
-----------------------------------------------------------
Searches related to c# tutorial for beginners
C# programming tutorial - Step by Step
c# tutorial for beginners with examples
Beginning C# Tutorial: Introduction to the Visual Studio
c# tutorial pdf
c# tutorial for beginners pdf
c# tutorial for beginners ppt
c# tutorial for beginners video
C# Tutorial and Programming
csharp tutorial
c# tutorial for beginners pdf free download
asp.net c# tutorial for beginners
By:
Unknown
On 12:27 PM
How to Convert Video Files using VLC Media Player
----------------------------------------------
How to Use VLC Player to Convert Videos From One Format to another
Searches related to How to convert Videos vlc
how to convert vlc videos to itunes
how to convert realplayer videos to vlc
How to Convert Video to MP3 in VLC Media Player
convert video to mp3 vlc
convert videos with vlc mac
how to convert videos with vlc media player
By:
Unknown
On 5:03 AM
How to Convert Video Files using VLC Media Player
-----------------------------------------------------------------
How to Use VLC Player to Convert Videos From One Format to another
Searches related to How to convert Videos vlc
how to convert vlc videos to itunes
how to convert realplayer videos to vlc
How to Convert Video to MP3 in VLC Media Player
convert video to mp3 vlc
convert videos with vlc mac
how to convert videos with vlc media player
By:
Unknown
On 4:09 AM
Friday, June 20, 2014
Monday, June 16, 2014
C++ Beginners Tutorial 27 - Introduction To Constructors in C++
1 | #include <iostream> |
----------------------------------------------------------------------------------------------
Introduction To Constructors
Searches related to c++ constructor
Searches related to c++ introduction to constructor
copy constructors in c++
types of constructors in c++
constructors in c++ ppt
constructors and destructors in c++
constructors in c++ pdf
parameterized constructors in c++
default constructors in c++
types of constructors in c++ with example
c++ constructor example
c++ constructor initialization list
c++ constructor initialization
c++ constructor syntax
c++ constructor call another constructor
c++ constructor chaining
copy constructor c++
c++ constructor overloading
By:
Unknown
On 1:17 PM
Saturday, June 14, 2014
C++ Beginners Tutorial 26 - Setter/Getter functions in C++
1 | #include <iostream> |
---------------------------------------------------------
Searches related to c++ getter setter functions how to use
why use getter and setter methods in java
how to use getter and setter methods in c#
c++ getter setter macro
Are getters and setters fine to use for - C++
getters & setters are bad, design patter
private string setters and getters
setter and getter function for an array
setters and getters?
c++ getter setter array
C++ getters/setters coding style
Conventions for accessor methods (getters and setters)
Getter and Setter Methods - C/C++
c++ - If a variable has getter and setter
Setter/Getter functions in C++ program?
c++ getter setter vs public
c++ getter setter example
By:
Unknown
On 8:50 AM
C++ Beginners Tutorial 25 - Introduction to C++ Classes and Objects
1 | #include <iostream> |
-------------------------------------------------------------
C++ Classes and Objects
Introduction to Classes in C++
c++ introduction to classes and objects in c++
Object-Oriented Programming-- Introduction to Classes
c++ classes and objects ppt
concept of classes and objects in c++
classes and objects in c++ pdf
classes and objects in c++ notes
classes and objects in c++ tutorial
classes and objects in c++ questions
classes and objects in java
By:
Unknown
On 6:25 AM
Thursday, June 12, 2014
C++ Beginners Tutorial 24 - How to pass a structure to a function in C++
1 | #include <iostream> |
--------------------------------------------------------
passing structures to functions
pass one structure to function
Searches related to How to pass a structure to a function in C++
passing an array of structures to a function in c++
passing an array of structures to a function
passing an array of structures to a function in c
pass array of structs to function
how do you return a structure from functions
how to return a struct from a function in c++
pointer in structure
pointer struct
Structure function in C++ 9 posts
Member functions inside struct
By:
Unknown
On 2:45 PM
C++ Beginners Tutorial 23 - Data structures or struct (C++)
1 | #include <iostream> |
----------------------------------------------------------
Searches related to c++ structure
c++ structure example
c++ structure initialization
c++ structure array
c++ structure constructor
c++ structure definition
c++ structure vs class
c++ structure alignment
c++ structure padding
By:
Unknown
On 2:37 PM
Wednesday, June 11, 2014
C++ Beginners Tutorial 22 - Pass by Reference / Value in C++
1 | #include <iostream> |
--------------------------------------------------
Searches related to c++ pass by reference vs value
c++ pass by value vs const reference
Does C++ pass objects by value or reference
When to pass parameters by value, reference
Function pass by value vs. pass by reference
C++ Tutorial: Value vs. Reference
difference between pass by reference and pass by value in c++
c++ object pass by reference or pass by value
c++ pass by reference vs pointer
c++ pass object by reference
pass by const reference
c++ pass by constant reference
c++ pass int by reference
By:
Unknown
On 2:13 PM
C++ Beginners Tutorial 21 - Pointers in C++
1 | #include <iostream> |
--------------------------------------------------------
Searches related to pointer in c++
pointer in c++ example
pointer in c++ pdf
pointer in c++ wikipedia
function pointer in c++
pointer in c++ tutorial
Pointers - C++ Tutorials
Pointer to int. C++
auto pointer in c++
this pointer in c++ ppt
pointer in c++ definition
By:
Unknown
On 1:34 PM
Monday, June 9, 2014
C++ Beginners Tutorial 20 - Multidimensional Arrays
1 | #include <iostream> |
------------------------------------------
Searches related to c++ multidimensional arrays
multidimensional arrays forums
sorting multidimensional arrays c++
handling huge multidimensional arrays c++
using arrays c++
initializing an array c++
Multi-Dimensional Arrays - C++
C++ Multi-dimensional Arrays
C++ Tutorials Two Dimensional Array
C++ multidimensional array operator
c++ dynamic multidimensional arrays
printing multidimensional arrays c++
allocating multidimensional arrays in c++
By:
Unknown
On 1:42 PM
C++ Beginners Tutorial 19 - Getting the sum of values in an array
1 | #include <iostream> |
---------------------------------------------------
To find the sum of an array element in C++ programming
How to add element to C++ array
I need help with finding the sum of elements in an array
c++ program to find sum of array element
c++ program to add two arrays
Sum of One Dimensional Array
By:
Unknown
On 1:06 PM
C++ Beginners Tutorial 18 - Arrays in C++
1 | #include <iostream> |
--------------------------------------------
Searches related to c++ arrays
c++ arrays of strings
c++ arrays length
c++ dynamic arrays
c++ multidimensional arrays
c++ vector
c++ arrays and pointers
c++ arrays of objects
c++ arrays in classes
By:
Unknown
On 12:54 PM
Sunday, June 8, 2014
C++ Beginners Tutorial 17 - Function Overloading
1 | #include <iostream> |
-----------------------------------------------
Searches related to c++ function overloading
c++ function overloading default parameters
c++ function overloading return type
c++ function overloading inheritance
c++ function overloading const
c++ function overloading ppt
c++ function overloading not working
c++ function overloading example
c++ function overloading ambiguity
By:
Unknown
On 4:48 PM
Subscribe to:
Posts (Atom)