• C# (Microsoft .NET)
• JAVA
• Dynamic HTML
• PHP & MySQL
• ASP.NET - C# & VB.NET
• Perl & CGI
• C | C++
• Vector Markup Language
• SMIL
• Assembler
• Databases
• Wap Development
• Web site promotion
• Web Marketing
• Curriculum Vitae (CV)
• Major web solutions
• Web design projects
• Software solutions
|
|
C# How to sort files by their creation date?
Free programming example written by Anton Zamov
|
using System;
using System.Collections;
using System.IO;
namespace InfoSystem
{
/// <summary>
/// This class is created by Anton Zamov
/// For more information about Anton Zamov
/// and a lot of other useful examples
/// please visit http://zamov.online.fr
/// You may use and redistribute this code as
/// long as you keep this message intact.
/// </summary>
public class FilesDateComparer: IComparer
{
public int Compare (object x, object y)
{
int iResult;
FileInfo oFileX=(FileInfo)x;
FileInfo oFileY=(FileInfo)y;
if(oFileX.LastWriteTime==oFileY.LastWriteTime)
{
iResult=0;
}
else
if(oFileX.LastWriteTime>oFileY.LastWriteTime)
{
iResult=1;
}
else
{
iResult=-1;
}
return iResult;
}
}
}
|
|
|
Jobs Portal, poweful jobs board software
PHP Mall, multi vendors mall website software
Car Portal, php script for auto classifieds websites
NetArt Media, software products and services
Real Estate Portal, web software for real estate portals
Blog System, multi user blog hosting script
PHP Store, powerful e-commerce system written in PHP
|