2
0

InOutOfProcHelper.cs 142 B

1234567891011
  1. namespace System.Data.SqlClient {
  2. static class InOutOfProcHelper {
  3. internal static bool InProc {
  4. get {
  5. return false;
  6. }
  7. }
  8. }
  9. }