This file contains 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
public class DistinguishedName | |
{ | |
/// <summary> | |
/// Represents a name/value pair within a distinguished name, including the index of the part. | |
/// </summary> | |
public struct Part | |
{ | |
public Part(string name, string value, int index = -1) | |
: this() | |
{ |
This file contains 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
du -h . | sort -nr | more |