ThemeEditor.Common.Themes.Theme.Write_CWavs C# (CSharp) Метод

Write_CWavs() приватный статический Метод

private static Write_CWavs ( Stream s, Theme theme ) : uint
s Stream
theme Theme
Результат uint
        private static uint Write_CWavs(Stream s, Theme theme)
        {
            var pos = s.Position;
            s.Write(theme.CWAV, 0, theme.CWAV.Length);
            return (uint) pos;
        }