Example #1
0
	public void Import( EnegyProperty _Src ) 
	{
		Dictionary<string,int>.Enumerator i = _Src.m_PropertyTable.GetEnumerator() ;
		while( i.MoveNext() )
		{
			AssignProperty( i.Current.Key , i.Current.Value ) ;
		}
	}
Example #2
0
	public void Assign( EnegyProperty _Src ) 
	{
		Clear() ;
		Import( _Src ) ;
	}