FindType.Search C# (CSharp) Method

Search() public method

public Search ( ) : void
return void
  public void Search()
  {
    if ( myClassList.Count != 0 )
    {
      for ( int i = 0; i < myClassList.Count; i++ )
      {
        Search( (string)myClassList[i] );
      }
    }      
  }
   

Same methods

FindType::Search ( String theSearchString ) : void
FindType::Search ( String theSearchString, String theModule ) : void

Usage Example

 public static void Main(string[] args)
 {
   FindType ft = new FindType();
   try
   {
     SetOptions(args, ft);      
     ft.Search();
   }
   catch(SecurityException)
   {
     Console.WriteLine("This sample has failed to run due to a security limitation!");
     Console.WriteLine("Try running the sample from a local drive or using CasPol.exe to turn off security.");
   }
   catch
   {
     PrintUsage();
   }      
 }
All Usage Examples Of FindType::Search