mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[Style] Add references in comments
This commit is contained in:
@@ -405,6 +405,7 @@ namespace SabreTools.Helper.Tools
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="s">Path to get directory name out of</param>
|
/// <param name="s">Path to get directory name out of</param>
|
||||||
/// <returns>Directory name from path</returns>
|
/// <returns>Directory name from path</returns>
|
||||||
|
/// <see cref="System.IO.Path.GetDirectoryName(string)"/>
|
||||||
public static string GetDirectoryName(string s)
|
public static string GetDirectoryName(string s)
|
||||||
{
|
{
|
||||||
if (s == null)
|
if (s == null)
|
||||||
@@ -431,6 +432,7 @@ namespace SabreTools.Helper.Tools
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="s">Path to get file name out of</param>
|
/// <param name="s">Path to get file name out of</param>
|
||||||
/// <returns>File name from path</returns>
|
/// <returns>File name from path</returns>
|
||||||
|
/// <see cref="System.IO.Path.GetFileName(string)"/>
|
||||||
public static string GetFileName(string s)
|
public static string GetFileName(string s)
|
||||||
{
|
{
|
||||||
if (s == null)
|
if (s == null)
|
||||||
@@ -457,6 +459,7 @@ namespace SabreTools.Helper.Tools
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="s">Path to get file name out of</param>
|
/// <param name="s">Path to get file name out of</param>
|
||||||
/// <returns>File name without extension from path</returns>
|
/// <returns>File name without extension from path</returns>
|
||||||
|
/// <see cref="System.IO.Path.GetFileNameWithoutExtension(string)"/>
|
||||||
public static string GetFileNameWithoutExtension(string s)
|
public static string GetFileNameWithoutExtension(string s)
|
||||||
{
|
{
|
||||||
s = GetFileName(s);
|
s = GetFileName(s);
|
||||||
|
|||||||
Reference in New Issue
Block a user