//http://tinyerp.codeplex.com/
//GNU Library General Public License (LGPL)
//-----------------------------------------------------------------------
//
// Copyright (c) Pyramid Consulting. All rights reserved.
//
//-----------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
namespace Bamboo.Core.Common
{
public class SysUtil
{
///
/// swap two elements in a array
///
/// dest array
/// first element
/// the other element
public static void SwapArrayElement(Object[] objArray, int i, int j)
{
Object t = objArray[i];
objArray[i] = objArray[j];
objArray[j] = t;
}
}
}