Method | Description | |
---|---|---|
CompareTo ( object obj ) : int |
Compares an FileName to the supplied object.
|
|
Equals ( object obj ) : bool |
Compares this instance to another FileName object.
|
|
FileName ( string newvalue ) : System |
Initializes a new instance of the FileName. If the filename could not be validated, a FormatException exception is thrown. |
|
GetHashCode ( ) : int |
Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.
|
|
New ( ) : |
Creates a new empty FileName object.
|
|
New ( string value ) : |
Creates a new empty FileName object using the specified value.
|
|
ToString ( ) : string |
Returns the fully qualified type name of this instance.
|
|
TryParse ( string s, |
Tries to parse the supplied string into the supplied FileName object.
|
|
TryParse ( string s, IFormatProvider provider, |
||
operator ( ) : bool |
Returns the inequality of two FileName objects.
|
Method | Description | |
---|---|---|
IsValidFileName ( string newValue ) : bool |
Checks whether the supplied value is a valid FileName or not.
|
public CompareTo ( object obj ) : int | ||
obj | object | The object to compare to. |
return | int |
public Equals ( object obj ) : bool | ||
obj | object | The |
return | bool |
public FileName ( string newvalue ) : System | ||
newvalue | string | The filename to use. |
return | System |
public static New ( string value ) : |
||
value | string | The supplied value. |
return |
public static TryParse ( string s, |
||
s | string | The string to parse. |
result | The |
|
return | bool |
public static TryParse ( string s, IFormatProvider provider, |
||
s | string | |
provider | IFormatProvider | |
result | ||
return | bool |