Skip to content
View Bronzite's full-sized avatar
  • HaystackID
  • Boston, MA
Block or Report

Block or report Bronzite

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. NetworkingSimulation NetworkingSimulation Public

    Library of Classes For Simulating Ethernet Networks

    C# 1

  2. DNSTap DNSTap Public

    A simple DNS repeater that provides visibility to DNS requests going out in realtime.

    C#

  3. FileDuplicationUtility FileDuplicationUtility Public

    Short .NET Core application that indexes files by their SHA256 Hash to find files with the same content.

    C#

  4. BattleTech.NET BattleTech.NET Public

    BattleTech Game Data Processing Library for .NET Standard.

    C#

  5. Simple TSV File Reader Simple TSV File Reader
    1
    using System;
    2
    using System.Collections.Generic;
    3
    using System.IO;
    4
    
                  
    5
    namespace TSVFile
  6. Short C# function to handle splittin... Short C# function to handle splitting strings with quotations and escapes without LINQ.
    1
    private static string[] SplitString (string sInput, char[] cDelimiters, char[] cQuotes, char cEscape)
    2
            {
    3
                List<string> retval = new List<string>();
    4
    
                  
    5
                bool bInQuotes = false;