diff --git a/src/dotnet/FileSystemBase.cs b/src/dotnet/FileSystemBase.cs
index c6330da8..9ffc9564 100644
--- a/src/dotnet/FileSystemBase.cs
+++ b/src/dotnet/FileSystemBase.cs
@@ -65,7 +65,9 @@ namespace Fsp
/// Occurs just before the file system is mounted.
/// File systems may override this method to configure the file system host.
///
- /// The file system host that is mounting this file system.
+ ///
+ /// The file system host that is mounting this file system.
+ ///
/// STATUS_SUCCESS or error code.
public virtual Int32 Init(Object Host)
{
@@ -75,7 +77,9 @@ namespace Fsp
/// Occurs just after the file system is mounted,
/// but prior to receiving any file system operation.
///
- /// The file system host that is mounting this file system.
+ ///
+ /// The file system host that is mounting this file system.
+ ///
/// STATUS_SUCCESS or error code.
public virtual Int32 Mounted(Object Host)
{
@@ -85,14 +89,18 @@ namespace Fsp
/// Occurs just after the file system is unmounted.
/// No other file system operations will be received on this file system.
///
- /// The file system host that is mounting this file system.
+ ///
+ /// The file system host that is mounting this file system.
+ ///
public virtual void Unmounted(Object Host)
{
}
///
/// Gets the volume information.
///
- /// Receives the volume information.
+ ///
+ /// Receives the volume information.
+ ///
/// STATUS_SUCCESS or error code.
public virtual Int32 GetVolumeInfo(
out VolumeInfo VolumeInfo)
@@ -103,8 +111,12 @@ namespace Fsp
///
/// Sets the volume label.
///
- /// The new label for the volume.
- /// Receives the updated volume information.
+ ///
+ /// The new label for the volume.
+ ///
+ ///
+ /// Receives the updated volume information.
+ ///
/// STATUS_SUCCESS or error code.
public virtual Int32 SetVolumeLabel(
String VolumeLabel,