This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
windows sqlclient: | |
Drms.Server.Oas.Core.Tests.TableWriterTests.WriterPerformanceTest - DAODirect SingleInsert (10) records: 199 ms | |
Drms.Server.Oas.Core.Tests.TableWriterTests.WriterPerformanceTest - DAODirect MultiInsert (10) records: 32 ms | |
Drms.Server.Oas.Core.Tests.TableWriterTests.WriterPerformanceTest - DAODirect BulkInsert (10) records: 33 ms | |
Drms.Server.Oas.Core.Tests.TableWriterTests.WriterPerformanceTest - DAODirect SingleInsert (1000) records: 69 ms | |
Drms.Server.Oas.Core.Tests.TableWriterTests.WriterPerformanceTest - DAODirect MultiInsert (1000) records: 69 ms | |
Drms.Server.Oas.Core.Tests.TableWriterTests.WriterPerformanceTest - DAODirect BulkInsert (1000) records: 77 ms | |
Drms.Server.Oas.Core.Tests.TableWriterTests.WriterPerformanceTest - DAODirect SingleInsert (10000) records: 222 ms | |
Drms.Server.Oas.Core.Tests.TableWriterTests.WriterPerformanceTest - DAODirect MultiInsert (10000) records: 221 ms |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics; | |
using System.Linq; | |
using ARKit; | |
using UIKit; | |
namespace ArPlaneAnchorIssue | |
{ | |
public partial class ViewController : UIViewController | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics; | |
using System.Linq; | |
using ARKit; | |
using UIKit; | |
namespace ArPlaneAnchorIssue | |
{ | |
public partial class ViewController : UIViewController | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Xunit; | |
namespace System.Data.Common.Tests | |
{ | |
public class DbConnectionTests | |
{ | |
static volatile bool _wasFinalized; | |
class FinalizingConnection | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq.Expressions; | |
namespace MyConsole | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
TryExpression throwCatchString = Expression.TryCatch( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
namespace MyConsole | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var eq = Enumerable.Empty<int>().GetEnumerator() == Enumerable.Empty<int>().GetEnumerator(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq.Expressions; | |
namespace MyConsole | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Expression newArrayExpression = Expression.NewArrayBounds(typeof(ulong), Expression.Constant(2147483647, typeof(int?))); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using System.Reflection; | |
namespace MyConsoleHelper | |
{ | |
class Program | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using System.Reflection; | |
namespace MyConsoleHelper | |
{ | |
class TestException : Exception { } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq.Expressions; | |
namespace MyConsoleHelper | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
TryExpression tryExp = Expression.TryCatch( |