namespace Framework
{
public class GUIDManager
private static uint _guid = 0;
public static uint GenGuid()
return ++_guid;
}